Interface AsyncApi30OperationTrait
-
- All Superinterfaces:
AsyncApi30Extensible,AsyncApi30Referenceable,AsyncApiExtensible,AsyncApiOperationTrait,AsyncApiReferenceable,Extensible,Node,Referenceable,Visitable
- All Known Implementing Classes:
AsyncApi30OperationTraitImpl
public interface AsyncApi30OperationTrait extends AsyncApiOperationTrait, AsyncApi30Extensible, AsyncApi30Referenceable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddExtension(String name, com.fasterxml.jackson.databind.JsonNode value)voidaddSecurity(AsyncApi30SecurityScheme value)voidclearExtensions()voidclearSecurity()AsyncApi30SecuritySchemecreateSecurityScheme()Stringget$ref()Map<String,com.fasterxml.jackson.databind.JsonNode>getExtensions()List<AsyncApi30SecurityScheme>getSecurity()StringgetTitle()voidinsertExtension(String name, com.fasterxml.jackson.databind.JsonNode value, int atIndex)voidinsertSecurity(AsyncApi30SecurityScheme value, int atIndex)voidremoveExtension(String name)voidremoveSecurity(AsyncApi30SecurityScheme value)voidset$ref(String value)voidsetTitle(String value)-
Methods inherited from interface io.apicurio.datamodels.models.asyncapi.AsyncApiOperationTrait
addTag, clearTags, createExternalDocumentation, createOperationBindings, createTag, getBindings, getDescription, getExternalDocs, getSummary, getTags, insertTag, removeTag, setBindings, setDescription, setExternalDocs, setSummary
-
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
-
getTitle
String getTitle()
-
setTitle
void setTitle(String value)
-
createSecurityScheme
AsyncApi30SecurityScheme createSecurityScheme()
-
getSecurity
List<AsyncApi30SecurityScheme> getSecurity()
-
addSecurity
void addSecurity(AsyncApi30SecurityScheme value)
-
clearSecurity
void clearSecurity()
-
removeSecurity
void removeSecurity(AsyncApi30SecurityScheme value)
-
insertSecurity
void insertSecurity(AsyncApi30SecurityScheme value, int atIndex)
-
get$ref
String get$ref()
- Specified by:
get$refin interfaceReferenceable
-
set$ref
void set$ref(String value)
- Specified by:
set$refin interfaceReferenceable
-
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
-
-