Uses of Interface
org.eclipse.microprofile.openapi.models.parameters.Parameter
-
Packages that use Parameter Package Description org.eclipse.microprofile.openapi 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.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.parameters A set of model interfaces to describe operation parameters and operation's request body. -
-
Uses of Parameter in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return Parameter Modifier and Type Method Description static ParameterOASFactory. createParameter()This method creates a newParameterinstance.default ParameterOASFilter. filterParameter(Parameter parameter)Allows filtering of a particular Parameter.Methods in org.eclipse.microprofile.openapi with parameters of type Parameter Modifier and Type Method Description default ParameterOASFilter. filterParameter(Parameter parameter)Allows filtering of a particular Parameter. -
Uses of Parameter in org.eclipse.microprofile.openapi.models
Methods in org.eclipse.microprofile.openapi.models that return types with arguments of type Parameter Modifier and Type Method Description Map<String,Parameter>Components. getParameters()Returns the parameters property from a Components instance.List<Parameter>Operation. getParameters()Returns the parameters property from an Operation instance.List<Parameter>PathItem. getParameters()Returns the parameters property from this PathItem instance.Methods in org.eclipse.microprofile.openapi.models with parameters of type Parameter Modifier and Type Method Description ComponentsComponents. addParameter(String key, Parameter parameter)Adds the given parameter to this Components' map of parameters with the given string as its key.OperationOperation. addParameter(Parameter parameter)Adds the given parameter item to this Operation's list of parameters.PathItemPathItem. addParameter(Parameter parameter)Adds the given parameter to this PathItem's list of parameters.voidOperation. removeParameter(Parameter parameter)Removes the given parameter item to this Operation's list of parameters.voidPathItem. removeParameter(Parameter parameter)Removes the given parameter to this PathItem's list of parameters.Method parameters in org.eclipse.microprofile.openapi.models with type arguments of type Parameter Modifier and Type Method Description default ComponentsComponents. parameters(Map<String,Parameter> parameters)Sets this Components' parameters property to the given Map containing keys and reusable parameter objects.default OperationOperation. parameters(List<Parameter> parameters)Sets this Operation's parameters property to the given parameter list.default PathItemPathItem. parameters(List<Parameter> parameters)Sets this PathItem's parameters property to the given list.voidComponents. setParameters(Map<String,Parameter> parameters)Sets this Components' parameters property to the given Map containing keys and reusable parameter objects.voidOperation. setParameters(List<Parameter> parameters)Sets this Operation's parameters property to the given parameter list.voidPathItem. setParameters(List<Parameter> parameters)Sets this PathItem's parameters property to the given list. -
Uses of Parameter in org.eclipse.microprofile.openapi.models.parameters
Methods in org.eclipse.microprofile.openapi.models.parameters that return Parameter Modifier and Type Method Description ParameterParameter. addExample(String key, Example example)Adds an example of the parameter using the specified key.default ParameterParameter. allowEmptyValue(Boolean allowEmptyValue)Sets the allowEmptyValue property of a Parameter instance to the given value.default ParameterParameter. allowReserved(Boolean allowReserved)Sets the allowReserved property of a Parameter instance to the given value.default ParameterParameter. content(Content content)Sets the content property of a Parameter instance to the given object.default ParameterParameter. deprecated(Boolean deprecated)Sets the deprecated property of a Parameter instance to the given value.default ParameterParameter. description(String description)Sets the description property of a Parameter instance to the given string.default ParameterParameter. example(Object example)Sets the example property of a Parameter instance to the given object.default ParameterParameter. examples(Map<String,Example> examples)Sets the examples property of a Parameter instance to the given value.default ParameterParameter. explode(Boolean explode)Sets the explode property of a Parameter instance to the given value.default ParameterParameter. in(Parameter.In in)Sets the in property of a Parameter instance to the given value.default ParameterParameter. name(String name)Sets the name property of a Parameter instance to the given string.default ParameterParameter. required(Boolean required)Sets the required property of a Parameter instance to the given value.default ParameterParameter. schema(Schema schema)Sets the schema property of a Parameter instance to the given value.default ParameterParameter. style(Parameter.Style style)Sets the style property of a Parameter instance to the given value.
-