We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.fusion.generator.
Class OpenAPIConfiguration
- java.lang.Object
-
- com.vaadin.fusion.generator.OpenAPIConfiguration
-
public class OpenAPIConfiguration extends Object
Basic information of the OpenApi spec.
-
-
Constructor Summary
Constructors Constructor and Description OpenAPIConfiguration(String applicationTitle, String applicationApiVersion, String serverUrl, String serverDescription)
Create a new OpenApi configuration.
-
Method Summary
All Methods Modifier and Type Method and Description String
getApplicationApiVersion()
Get application api version.
String
getApplicationTitle()
Get application title.
String
getServerDescription()
Get server description.
String
getServerUrl()
Get server url.
-
-
-
Constructor Detail
-
OpenAPIConfiguration
public OpenAPIConfiguration(String applicationTitle, String applicationApiVersion, String serverUrl, String serverDescription)
Create a new OpenApi configuration.
Parameters:
applicationTitle
- Title of the applicationapplicationApiVersion
- api version of the applicationserverUrl
- Base url of the applicationserverDescription
- Description of the server
-
-
Method Detail
-
getApplicationTitle
public String getApplicationTitle()
Get application title.
Returns:
application title
-
getApplicationApiVersion
public String getApplicationApiVersion()
Get application api version.
Returns:
application api version
-
getServerUrl
public String getServerUrl()
Get server url.
Returns:
server url
-
getServerDescription
public String getServerDescription()
Get server description.
Returns:
server description
-
-