Interface AsyncApi25Document
-
- All Superinterfaces:
AsyncApi25Extensible,AsyncApiDocument,AsyncApiExtensible,Document,Extensible,Node,RootNode,Visitable
- All Known Implementing Classes:
AsyncApi25DocumentImpl
public interface AsyncApi25Document extends RootNode, AsyncApiDocument, AsyncApi25Extensible
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddExtension(String name, com.fasterxml.jackson.databind.JsonNode value)voidaddTag(AsyncApi25Tag value)voidclearExtensions()voidclearTags()AsyncApi25ExternalDocumentationcreateExternalDocumentation()AsyncApi25TagcreateTag()Map<String,com.fasterxml.jackson.databind.JsonNode>getExtensions()AsyncApi25ExternalDocumentationgetExternalDocs()List<AsyncApi25Tag>getTags()voidinsertExtension(String name, com.fasterxml.jackson.databind.JsonNode value, int atIndex)voidinsertTag(AsyncApi25Tag value, int atIndex)voidremoveExtension(String name)voidremoveTag(AsyncApi25Tag value)voidsetExternalDocs(AsyncApi25ExternalDocumentation value)-
Methods inherited from interface io.apicurio.datamodels.models.asyncapi.AsyncApiDocument
createChannels, createComponents, createServers, getAsyncapi, getChannels, getComponents, getDefaultContentType, getId, getServers, setAsyncapi, setChannels, setComponents, setDefaultContentType, setId, setServers
-
Methods inherited from interface io.apicurio.datamodels.models.Document
createInfo, getInfo, setInfo
-
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
AsyncApi25Tag createTag()
-
getTags
List<AsyncApi25Tag> getTags()
-
addTag
void addTag(AsyncApi25Tag value)
-
clearTags
void clearTags()
-
removeTag
void removeTag(AsyncApi25Tag value)
-
insertTag
void insertTag(AsyncApi25Tag value, int atIndex)
-
getExternalDocs
AsyncApi25ExternalDocumentation getExternalDocs()
-
setExternalDocs
void setExternalDocs(AsyncApi25ExternalDocumentation value)
-
createExternalDocumentation
AsyncApi25ExternalDocumentation 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
-
-