Uses of Interface
org.eclipse.microprofile.openapi.models.Operation
-
Packages that use Operation Package Description org.eclipse.microprofile.openapi A set of Java interfaces, annotations and programming models which allow Java developers to natively produce OpenAPI v3 documents from their JAX-RS applications.org.eclipse.microprofile.openapi.models A set of interfaces for programmable models and their helper classes, many derived from Swagger Core library. -
-
Uses of Operation in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return Operation Modifier and Type Method Description static OperationOASFactory. createOperation()This method creates a newOperationinstance.default OperationOASFilter. filterOperation(Operation operation)Allows filtering of a particular Operation.Methods in org.eclipse.microprofile.openapi with parameters of type Operation Modifier and Type Method Description default OperationOASFilter. filterOperation(Operation operation)Allows filtering of a particular Operation. -
Uses of Operation in org.eclipse.microprofile.openapi.models
Methods in org.eclipse.microprofile.openapi.models that return Operation Modifier and Type Method Description OperationOperation. addCallback(String key, Callback callback)Adds the given callback item to this Operation's map of callbacks.OperationOperation. addParameter(Parameter parameter)Adds the given parameter item to this Operation's list of parameters.OperationOperation. addSecurityRequirement(SecurityRequirement securityRequirement)Adds the given security requirement item to this Operation's list of security mechanisms.OperationOperation. addServer(Server server)Adds the given server to this Operation's list of servers.OperationOperation. addTag(String tag)Adds the given tag to this Operation's list of tags.default OperationOperation. callbacks(Map<String,Callback> callbacks)Sets this Operation's callbacks property to the given map.default OperationOperation. deprecated(Boolean deprecated)Sets this Operation's deprecated property to the given value.default OperationOperation. description(String description)Sets this Operation's description property to the given string.default OperationOperation. externalDocs(ExternalDocumentation externalDocs)Sets this Operation's externalDocs property to the given object.OperationPathItem. getDELETE()Returns the delete property from a PathItem instance.OperationPathItem. getGET()Returns the get property from a PathItem instance.OperationPathItem. getHEAD()Returns the head property from a PathItem instance.OperationPathItem. getOPTIONS()Returns the options property from a PathItem instance.OperationPathItem. getPATCH()Returns the patch property from a PathItem instance.OperationPathItem. getPOST()Returns the post property from a PathItem instance.OperationPathItem. getPUT()Returns the put property from a PathItem instance.OperationPathItem. getTRACE()Returns the trace property from a PathItem instance.default OperationOperation. operationId(String operationId)Sets this Operation's operationId property to the given string.default OperationOperation. parameters(List<Parameter> parameters)Sets this Operation's parameters property to the given parameter list.default OperationOperation. requestBody(RequestBody requestBody)Sets this Operation's requestBody property to the given object.default OperationOperation. responses(APIResponses responses)Sets this Operation's responses property to the given responses.default OperationOperation. security(List<SecurityRequirement> security)Sets this Operation's security property to the given list.default OperationOperation. servers(List<Server> servers)Sets this Operation's servers property to the given list.default OperationOperation. summary(String summary)Sets this Operation's summary property to the given string.default OperationOperation. tags(List<String> tags)Sets this Operation's tags property to the given tags.Methods in org.eclipse.microprofile.openapi.models that return types with arguments of type Operation Modifier and Type Method Description Map<PathItem.HttpMethod,Operation>PathItem. getOperations()Returns a map with all the operations for this path where the keys arePathItem.HttpMethoditemsMethods in org.eclipse.microprofile.openapi.models with parameters of type Operation Modifier and Type Method Description default PathItemPathItem. DELETE(Operation delete)Sets this PathItem's delete property to the given operation.default PathItemPathItem. GET(Operation get)Sets this PathItem's get property to the given operation.default PathItemPathItem. HEAD(Operation head)Sets this PathItem's head property to the given operation.default PathItemPathItem. OPTIONS(Operation options)Sets this PathItem's options property to the given operation.default PathItemPathItem. PATCH(Operation patch)Sets this PathItem's patch property to the given operation.default PathItemPathItem. POST(Operation post)Sets this PathItem's post property to the given operation.default PathItemPathItem. PUT(Operation put)Sets this PathItem's put property to the given operation.voidPathItem. setDELETE(Operation delete)Sets this PathItem's delete property to the given operation.voidPathItem. setGET(Operation get)Sets this PathItem's get property to the given operation.voidPathItem. setHEAD(Operation head)Sets this PathItem's head property to the given operation.voidPathItem. setOperation(PathItem.HttpMethod httpMethod, Operation operation)Sets an operation for a given http method.voidPathItem. setOPTIONS(Operation options)Sets this PathItem's options property to the given operation.voidPathItem. setPATCH(Operation patch)Sets this PathItem's patch property to the given operation.voidPathItem. setPOST(Operation post)Sets this PathItem's post property to the given operation.voidPathItem. setPUT(Operation put)Sets this PathItem's put property to the given operation.voidPathItem. setTRACE(Operation trace)Sets this PathItem's trace property to the given operation.default PathItemPathItem. TRACE(Operation trace)Sets this PathItem's trace property to the given operation.
-