Uses of Interface
org.eclipse.microprofile.openapi.models.PathItem
Packages that use PathItem
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 PathItem in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return PathItemModifier and TypeMethodDescriptionstatic PathItemOASFactory.createPathItem()This method creates a newPathIteminstance.default PathItemOASFilter.filterPathItem(PathItem pathItem) Allows filtering of a particular PathItem.Methods in org.eclipse.microprofile.openapi with parameters of type PathItemModifier and TypeMethodDescriptiondefault PathItemOASFilter.filterPathItem(PathItem pathItem) Allows filtering of a particular PathItem. -
Uses of PathItem in org.eclipse.microprofile.openapi.models
Methods in org.eclipse.microprofile.openapi.models that return PathItemModifier and TypeMethodDescriptionPathItem.addParameter(Parameter parameter) Adds the given parameter to this PathItem's list of parameters.Adds the given server to this PathItem's list of servers.default PathItemSets this PathItem's delete property to the given operation.default PathItemPathItem.description(String description) Sets this PathItem's description property to the given string.default PathItemSets this PathItem's get property to the given operation.default PathItemPaths.getPathItem(String name) Returns a path item for a given name.default PathItemSets this PathItem's head property to the given operation.default PathItemSets this PathItem's options property to the given operation.default PathItemPathItem.parameters(List<Parameter> parameters) Sets this PathItem's parameters property to the given list.default PathItemSets this PathItem's patch property to the given operation.default PathItemSets this PathItem's post property to the given operation.default PathItemSets this PathItem's put property to the given operation.default PathItemSets this PathItem's servers property to the given list.default PathItemSets this PathItem's summary property to the given string.default PathItemSets this PathItem's trace property to the given operation.Methods in org.eclipse.microprofile.openapi.models that return types with arguments of type PathItemModifier and TypeMethodDescriptionComponents.getPathItems()Returns the pathItems property of this Components instance.Paths.getPathItems()Returns a copy map (potentially immutable) of the path items.OpenAPI.getWebhooks()Returns the webhooks property of this OpenAPI instance.Methods in org.eclipse.microprofile.openapi.models with parameters of type PathItemModifier and TypeMethodDescriptionComponents.addPathItem(String name, PathItem pathItem) Adds a path item.Paths.addPathItem(String name, PathItem item) Adds the given path item to this Paths and return this instance of PathsOpenAPI.addWebhook(String name, PathItem webhook) Adds a webhook definition.Method parameters in org.eclipse.microprofile.openapi.models with type arguments of type PathItemModifier and TypeMethodDescriptiondefault ComponentsSets the pathItems property of this Components instance.voidComponents.setPathItems(Map<String, PathItem> pathItems) Sets the pathItems property of this Components instance.voidPaths.setPathItems(Map<String, PathItem> items) Set the path items map to this PathsvoidOpenAPI.setWebhooks(Map<String, PathItem> webhooks) Sets the webhooks property of this OpenAPI instance.default OpenAPISets the webhooks property of this OpenAPI instance. -
Uses of PathItem in org.eclipse.microprofile.openapi.models.callbacks
Methods in org.eclipse.microprofile.openapi.models.callbacks that return PathItemModifier and TypeMethodDescriptiondefault PathItemCallback.getPathItem(String name) Returns a path item for a given name.Methods in org.eclipse.microprofile.openapi.models.callbacks that return types with arguments of type PathItemModifier and TypeMethodDescriptionCallback.getPathItems()Returns a copy map (potentially immutable) of the path items.Methods in org.eclipse.microprofile.openapi.models.callbacks with parameters of type PathItemModifier and TypeMethodDescriptionCallback.addPathItem(String name, PathItem pathItem) Adds the given PathItem to this Callback's list of PathItems using the string as its key.Method parameters in org.eclipse.microprofile.openapi.models.callbacks with type arguments of type PathItemModifier and TypeMethodDescriptionvoidCallback.setPathItems(Map<String, PathItem> items) Set the path items map to this Callback.