Interface AsyncApi24Operation
-
- All Superinterfaces:
AsyncApi24Extensible,AsyncApiExtensible,AsyncApiOperation,Extensible,Node,Operation,Visitable
- All Known Implementing Classes:
AsyncApi24OperationImpl
public interface AsyncApi24Operation extends AsyncApiOperation, AsyncApi24Extensible
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddExtension(String name, com.fasterxml.jackson.databind.JsonNode value)voidaddSecurity(AsyncApi24SecurityRequirement value)voidclearExtensions()voidclearSecurity()AsyncApi24MessagecreateMessage()AsyncApi24SecurityRequirementcreateSecurityRequirement()Map<String,com.fasterxml.jackson.databind.JsonNode>getExtensions()AsyncApi24MessagegetMessage()StringgetOperationId()List<AsyncApi24SecurityRequirement>getSecurity()voidinsertExtension(String name, com.fasterxml.jackson.databind.JsonNode value, int atIndex)voidinsertSecurity(AsyncApi24SecurityRequirement value, int atIndex)voidremoveExtension(String name)voidremoveSecurity(AsyncApi24SecurityRequirement value)voidsetMessage(AsyncApi24Message 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
AsyncApi24SecurityRequirement createSecurityRequirement()
-
getSecurity
List<AsyncApi24SecurityRequirement> getSecurity()
-
addSecurity
void addSecurity(AsyncApi24SecurityRequirement value)
-
clearSecurity
void clearSecurity()
-
removeSecurity
void removeSecurity(AsyncApi24SecurityRequirement value)
-
insertSecurity
void insertSecurity(AsyncApi24SecurityRequirement value, int atIndex)
-
getMessage
AsyncApi24Message getMessage()
-
setMessage
void setMessage(AsyncApi24Message value)
-
createMessage
AsyncApi24Message 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
-
-