Uses of Interface
org.eclipse.microprofile.openapi.models.PathItem
-
Packages that use PathItem 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.org.eclipse.microprofile.openapi.models.callbacks An interface to represent callback URL. -
-
Uses of PathItem in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return PathItem Modifier and Type Method Description static 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 PathItem Modifier and Type Method Description default 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 PathItem Modifier and Type Method Description PathItemPathItem. addParameter(Parameter parameter)Adds the given parameter to this PathItem's list of parameters.PathItemPathItem. addServer(Server server)Adds the given server to this PathItem's list of servers.default PathItemPathItem. DELETE(Operation delete)Sets 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 PathItemPathItem. GET(Operation get)Sets this PathItem's get property to the given operation.default PathItemPaths. getPathItem(String name)Returns a path item for a given name.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. parameters(List<Parameter> parameters)Sets this PathItem's parameters property to the given list.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.default PathItemPathItem. servers(List<Server> servers)Sets this PathItem's servers property to the given list.default PathItemPathItem. summary(String summary)Sets this PathItem's summary property to the given string.default PathItemPathItem. TRACE(Operation trace)Sets this PathItem's trace property to the given operation.Methods in org.eclipse.microprofile.openapi.models that return types with arguments of type PathItem Modifier and Type Method Description Map<String,PathItem>Paths. getPathItems()Returns a copy map (potentially immutable) of the path items.Methods in org.eclipse.microprofile.openapi.models with parameters of type PathItem Modifier and Type Method Description PathsPaths. addPathItem(String name, PathItem item)Adds the given path item to this Paths and return this instance of PathsMethod parameters in org.eclipse.microprofile.openapi.models with type arguments of type PathItem Modifier and Type Method Description voidPaths. setPathItems(Map<String,PathItem> items)Set the path items map to this Paths -
Uses of PathItem in org.eclipse.microprofile.openapi.models.callbacks
Methods in org.eclipse.microprofile.openapi.models.callbacks that return PathItem Modifier and Type Method Description default 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 PathItem Modifier and Type Method Description Map<String,PathItem>Callback. getPathItems()Returns a copy map (potentially immutable) of the path items.Methods in org.eclipse.microprofile.openapi.models.callbacks with parameters of type PathItem Modifier and Type Method Description CallbackCallback. 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 PathItem Modifier and Type Method Description voidCallback. setPathItems(Map<String,PathItem> items)Set the path items map to this Callback.
-