Interface AsyncApi26Operation
-
- All Superinterfaces:
AsyncApi26Extensible,AsyncApiExtensible,AsyncApiOperation,Extensible,Node,Operation,Visitable
- All Known Implementing Classes:
AsyncApi26OperationImpl
public interface AsyncApi26Operation extends AsyncApiOperation, AsyncApi26Extensible
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddExtension(String name, com.fasterxml.jackson.databind.JsonNode value)voidaddSecurity(AsyncApi26SecurityRequirement value)voidclearExtensions()voidclearSecurity()AsyncApi26MessagecreateMessage()AsyncApi26SecurityRequirementcreateSecurityRequirement()Map<String,com.fasterxml.jackson.databind.JsonNode>getExtensions()AsyncApi26MessagegetMessage()StringgetOperationId()List<AsyncApi26SecurityRequirement>getSecurity()voidinsertExtension(String name, com.fasterxml.jackson.databind.JsonNode value, int atIndex)voidinsertSecurity(AsyncApi26SecurityRequirement value, int atIndex)voidremoveExtension(String name)voidremoveSecurity(AsyncApi26SecurityRequirement value)voidsetMessage(AsyncApi26Message value)voidsetOperationId(String value)-
Methods inherited from interface io.apicurio.datamodels.models.asyncapi.AsyncApiOperation
addTag, addTrait, clearTags, clearTraits, createOperationBindings, createOperationTrait, createTag, getBindings, getTags, getTraits, insertTag, insertTrait, removeTag, removeTrait, setBindings
-
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
-
Methods inherited from interface io.apicurio.datamodels.models.Operation
createExternalDocumentation, getDescription, getExternalDocs, getSummary, setDescription, setExternalDocs, setSummary
-
-
-
-
Method Detail
-
getOperationId
String getOperationId()
-
setOperationId
void setOperationId(String value)
-
createSecurityRequirement
AsyncApi26SecurityRequirement createSecurityRequirement()
-
getSecurity
List<AsyncApi26SecurityRequirement> getSecurity()
-
addSecurity
void addSecurity(AsyncApi26SecurityRequirement value)
-
clearSecurity
void clearSecurity()
-
removeSecurity
void removeSecurity(AsyncApi26SecurityRequirement value)
-
insertSecurity
void insertSecurity(AsyncApi26SecurityRequirement value, int atIndex)
-
getMessage
AsyncApi26Message getMessage()
-
setMessage
void setMessage(AsyncApi26Message value)
-
createMessage
AsyncApi26Message createMessage()
-
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
-
-