Interface AsyncApi30Info
-
- All Superinterfaces:
AsyncApi30Extensible,AsyncApiExtensible,AsyncApiInfo,Extensible,Info,Node,Visitable
- All Known Implementing Classes:
AsyncApi30InfoImpl
public interface AsyncApi30Info extends AsyncApiInfo, AsyncApi30Extensible
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddExtension(String name, com.fasterxml.jackson.databind.JsonNode value)voidaddTag(AsyncApi30Tag value)voidclearExtensions()voidclearTags()AsyncApi30ExternalDocumentationcreateExternalDocumentation()AsyncApi30TagcreateTag()Map<String,com.fasterxml.jackson.databind.JsonNode>getExtensions()AsyncApi30ExternalDocumentationgetExternalDocs()List<AsyncApi30Tag>getTags()voidinsertExtension(String name, com.fasterxml.jackson.databind.JsonNode value, int atIndex)voidinsertTag(AsyncApi30Tag value, int atIndex)voidremoveExtension(String name)voidremoveTag(AsyncApi30Tag value)voidsetExternalDocs(AsyncApi30ExternalDocumentation value)-
Methods inherited from interface io.apicurio.datamodels.models.Info
createContact, createLicense, getContact, getDescription, getLicense, getTermsOfService, getTitle, getVersion, setContact, setDescription, setLicense, setTermsOfService, setTitle, setVersion
-
Methods inherited from interface io.apicurio.datamodels.models.Node
addExtraProperty, attach, clearNodeAttributes, emptyClone, getExtraProperty, getExtraPropertyNames, getNodeAttribute, getNodeAttributeNames, hasExtraProperties, isAttached, mapPropertyName, modelId, parent, parentPropertyName, parentPropertyType, removeExtraProperty, root, setNodeAttribute
-
-
-
-
Method Detail
-
createTag
AsyncApi30Tag createTag()
-
getTags
List<AsyncApi30Tag> getTags()
-
addTag
void addTag(AsyncApi30Tag value)
-
clearTags
void clearTags()
-
removeTag
void removeTag(AsyncApi30Tag value)
-
insertTag
void insertTag(AsyncApi30Tag value, int atIndex)
-
getExternalDocs
AsyncApi30ExternalDocumentation getExternalDocs()
-
setExternalDocs
void setExternalDocs(AsyncApi30ExternalDocumentation value)
-
createExternalDocumentation
AsyncApi30ExternalDocumentation createExternalDocumentation()
-
getExtensions
Map<String,com.fasterxml.jackson.databind.JsonNode> getExtensions()
- Specified by:
getExtensionsin interfaceExtensible
-
addExtension
void addExtension(String name, com.fasterxml.jackson.databind.JsonNode value)
- Specified by:
addExtensionin interfaceExtensible
-
clearExtensions
void clearExtensions()
- Specified by:
clearExtensionsin interfaceExtensible
-
removeExtension
void removeExtension(String name)
- Specified by:
removeExtensionin interfaceExtensible
-
insertExtension
void insertExtension(String name, com.fasterxml.jackson.databind.JsonNode value, int atIndex)
- Specified by:
insertExtensionin interfaceExtensible
-
-