Interface AsyncApi24SecurityScheme
-
- All Superinterfaces:
AsyncApi24Extensible,AsyncApi24Referenceable,AsyncApiExtensible,AsyncApiReferenceable,AsyncApiSecurityScheme,Extensible,Node,Referenceable,SecurityScheme,Visitable
- All Known Implementing Classes:
AsyncApi24SecuritySchemeImpl
public interface AsyncApi24SecurityScheme extends AsyncApiSecurityScheme, AsyncApi24Extensible, AsyncApi24Referenceable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddExtension(String name, com.fasterxml.jackson.databind.JsonNode value)voidclearExtensions()Stringget$ref()Map<String,com.fasterxml.jackson.databind.JsonNode>getExtensions()voidinsertExtension(String name, com.fasterxml.jackson.databind.JsonNode value, int atIndex)voidremoveExtension(String name)voidset$ref(String value)-
Methods inherited from interface io.apicurio.datamodels.models.asyncapi.AsyncApiSecurityScheme
createOAuthFlows, getBearerFormat, getFlows, getOpenIdConnectUrl, getScheme, setBearerFormat, setFlows, setOpenIdConnectUrl, setScheme
-
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.SecurityScheme
getDescription, getIn, getName, getType, setDescription, setIn, setName, setType
-
-
-
-
Method Detail
-
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
-
-