Uses of Interface
org.eclipse.microprofile.openapi.models.callbacks.Callback
Packages that use Callback
Package
Description
A set of Java interfaces, annotations and programming models which allow Java developers to natively produce OpenAPI
v3.1 documents from their Jakarta REST applications.
A set of interfaces for programmable models and their helper classes, many derived from Swagger Core library.
An interface to represent callback URL.
-
Uses of Callback in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return CallbackModifier and TypeMethodDescriptionstatic CallbackOASFactory.createCallback()This method creates a newCallbackinstance.default CallbackOASFilter.filterCallback(Callback callback) Allows filtering of a particular Callback.Methods in org.eclipse.microprofile.openapi with parameters of type CallbackModifier and TypeMethodDescriptiondefault CallbackOASFilter.filterCallback(Callback callback) Allows filtering of a particular Callback. -
Uses of Callback in org.eclipse.microprofile.openapi.models
Methods in org.eclipse.microprofile.openapi.models that return types with arguments of type CallbackModifier and TypeMethodDescriptionComponents.getCallbacks()Returns the callbacks property from a Components instance.Operation.getCallbacks()Returns the callbacks property from an Operation instance.Methods in org.eclipse.microprofile.openapi.models with parameters of type CallbackModifier and TypeMethodDescriptionComponents.addCallback(String key, Callback callback) Adds the given callback to this Components' map of callbacks with the given string as its key.Operation.addCallback(String key, Callback callback) Adds the given callback item to this Operation's map of callbacks.Method parameters in org.eclipse.microprofile.openapi.models with type arguments of type CallbackModifier and TypeMethodDescriptiondefault ComponentsSets this Components' callbacks property to the given Map containing keys and reusable callback objects.default OperationSets this Operation's callbacks property to the given map.voidComponents.setCallbacks(Map<String, Callback> callbacks) Sets this Components' callbacks property to the given Map containing keys and reusable callback objects.voidOperation.setCallbacks(Map<String, Callback> callbacks) Sets this Operation's callbacks property to the given map. -
Uses of Callback in org.eclipse.microprofile.openapi.models.callbacks
Methods in org.eclipse.microprofile.openapi.models.callbacks that return CallbackModifier and TypeMethodDescriptionCallback.addPathItem(String name, PathItem pathItem) Adds the given PathItem to this Callback's list of PathItems using the string as its key.