Interface AsyncApi23Document
-
- All Superinterfaces:
AsyncApi23Extensible,AsyncApiDocument,AsyncApiExtensible,Document,Extensible,Node,RootNode,Visitable
- All Known Implementing Classes:
AsyncApi23DocumentImpl
public interface AsyncApi23Document extends RootNode, AsyncApiDocument, AsyncApi23Extensible
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddExtension(String name, com.fasterxml.jackson.databind.JsonNode value)voidaddTag(AsyncApi23Tag value)voidclearExtensions()voidclearTags()AsyncApi23ExternalDocumentationcreateExternalDocumentation()AsyncApi23TagcreateTag()Map<String,com.fasterxml.jackson.databind.JsonNode>getExtensions()AsyncApi23ExternalDocumentationgetExternalDocs()List<AsyncApi23Tag>getTags()voidinsertExtension(String name, com.fasterxml.jackson.databind.JsonNode value, int atIndex)voidinsertTag(AsyncApi23Tag value, int atIndex)voidremoveExtension(String name)voidremoveTag(AsyncApi23Tag value)voidsetExternalDocs(AsyncApi23ExternalDocumentation 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
AsyncApi23Tag createTag()
-
getTags
List<AsyncApi23Tag> getTags()
-
addTag
void addTag(AsyncApi23Tag value)
-
clearTags
void clearTags()
-
removeTag
void removeTag(AsyncApi23Tag value)
-
insertTag
void insertTag(AsyncApi23Tag value, int atIndex)
-
getExternalDocs
AsyncApi23ExternalDocumentation getExternalDocs()
-
setExternalDocs
void setExternalDocs(AsyncApi23ExternalDocumentation value)
-
createExternalDocumentation
AsyncApi23ExternalDocumentation 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
-
-