Class OpenAPIInfo
- java.lang.Object
-
- org.odpi.openmetadata.adapters.connectors.integration.openapis.properties.OpenAPIInfo
-
- All Implemented Interfaces:
Serializable
public class OpenAPIInfo extends Object implements Serializable
OpenAPIInfo describes the top level info section of the Open API Specification- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OpenAPIInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OpenAPIContactDetailsgetContact()StringgetDescription()OpenAPILicensegetLicense()StringgetTitle()StringgetVersion()voidsetContact(OpenAPIContactDetails contact)voidsetDescription(String description)voidsetLicense(OpenAPILicense license)voidsetTitle(String title)voidsetVersion(String version)StringtoString()
-
-
-
Method Detail
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getContact
public OpenAPIContactDetails getContact()
-
setContact
public void setContact(OpenAPIContactDetails contact)
-
getLicense
public OpenAPILicense getLicense()
-
setLicense
public void setLicense(OpenAPILicense license)
-
getVersion
public String getVersion()
-
setVersion
public void setVersion(String version)
-
-