Interface Info
- All Superinterfaces:
Constructible
,Extensible<Info>
This interface represents all the metadata about the API. The metadata may be used by clients if needed, and may be
presented in editing or documentation tools.
- See Also:
-
- "https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#infoObject"
-
Method Summary
Modifier and TypeMethodDescriptiondefault Info
Sets this Info instance's contact information for the exposed API and returns this instance of Info.default Info
description
(String description) Sets this Info instance's description for the application to the given description and returns this instance of Info.Returns the contact information for the exposed API from this Info instance.Returns a short description for the application for this Info instance.Returns the license information for the exposed API from this Info instance.Returns the URL to the Terms of Service for the API for this instance of Info.getTitle()
Returns the title for the application for this instance of InfoReturns the version of the OpenAPI document for this Info instance.default Info
Sets this Info's license information for the exposed API and returns this instance of Info.void
setContact
(Contact contact) Sets this Info instance's contact information for the exposed API.void
setDescription
(String description) Sets this Info instance's description for the application to the given description.void
setLicense
(License license) Sets this Info's license information for the exposed API.void
setTermsOfService
(String termsOfService) Sets this Info instance's URL to the Terms of Service for the API to the given String.void
Sets this Info instance's title for the application to the given title.void
setVersion
(String version) Sets the version of the OpenAPI document for this instance of Info to the given version.default Info
termsOfService
(String termsOfService) Sets this Info instance's URL to the Terms of Service for the API to the given String and returns this instance of Info.default Info
Sets this Info instance's title for the application to the given title and returns this instance of Infodefault Info
Sets the version of the OpenAPI document for this instance of Info to the given version and returns this instance of InfoMethods inherited from interface org.eclipse.microprofile.openapi.models.Extensible
addExtension, extensions, getExtensions, removeExtension, setExtensions
-
Method Details
-
getTitle
String getTitle()Returns the title for the application for this instance of Info- Returns:
- the title of the application
-
setTitle
Sets this Info instance's title for the application to the given title.- Parameters:
title
- the title of the application
-
title
Sets this Info instance's title for the application to the given title and returns this instance of Info- Parameters:
title
- the title of the application- Returns:
- this Info instance
-
getDescription
String getDescription()Returns a short description for the application for this Info instance.- Returns:
- a short description of the application
-
setDescription
Sets this Info instance's description for the application to the given description.- Parameters:
description
- a short description for the application
-
description
Sets this Info instance's description for the application to the given description and returns this instance of Info.- Parameters:
description
- a short description for the application- Returns:
- this Info instance
-
getTermsOfService
String getTermsOfService()Returns the URL to the Terms of Service for the API for this instance of Info.- Returns:
- a URL to the Terms of Service for the API
-
setTermsOfService
Sets this Info instance's URL to the Terms of Service for the API to the given String. The URL must be in the format of a URL.- Parameters:
termsOfService
- the URL to the Terms of Service for the API
-
termsOfService
Sets this Info instance's URL to the Terms of Service for the API to the given String and returns this instance of Info. The URL must be in the format of a URL.- Parameters:
termsOfService
- the URL to the Terms of Service for the API- Returns:
- this Info instance
-
getContact
Contact getContact()Returns the contact information for the exposed API from this Info instance.- Returns:
- the contact information for the exposed API
-
setContact
Sets this Info instance's contact information for the exposed API.- Parameters:
contact
- the contact information for the exposed API
-
contact
Sets this Info instance's contact information for the exposed API and returns this instance of Info.- Parameters:
contact
- the contact information for the exposed API- Returns:
- this Info instance
-
getLicense
License getLicense()Returns the license information for the exposed API from this Info instance.- Returns:
- the license information for the exposed API
-
setLicense
Sets this Info's license information for the exposed API.- Parameters:
license
- the license information for the exposed API
-
license
Sets this Info's license information for the exposed API and returns this instance of Info.- Parameters:
license
- the license information for the exposed API- Returns:
- this Info instance
-
getVersion
String getVersion()Returns the version of the OpenAPI document for this Info instance.- Returns:
- the version of the OpenAPI document
-
setVersion
Sets the version of the OpenAPI document for this instance of Info to the given version.- Parameters:
version
- the version of the OpenAPI document
-
version
Sets the version of the OpenAPI document for this instance of Info to the given version and returns this instance of Info- Parameters:
version
- the version of the OpenAPI document- Returns:
- this Info instance
-