Uses of Class
org.apache.juneau.bean.openapi3.Parameter
Packages that use Parameter
-
Uses of Parameter in org.apache.juneau.bean.openapi3
Methods in org.apache.juneau.bean.openapi3 that return ParameterModifier and TypeMethodDescriptionParameter.copy()
Makes a copy of this object.Operation.getParameter
(String in, String name) Returns the parameter with the specified type and name.static final Parameter
OpenApiBuilder.parameter()
Creates an emptyParameter
element.static final Parameter
Parameter.setAllowEmptyValue
(Boolean value) Sets the allow empty value flag.Parameter.setAllowReserved
(Boolean value) Sets the allow reserved flag.Parameter.setDeprecated
(Boolean value) Sets the deprecated flag.Parameter.setDescription
(String value) Sets the description.Parameter.setExample
(Object value) Sets the example.Parameter.setExamples
(Map<String, Example> value) Sets the examples map.Parameter.setExplode
(Boolean value) Sets the explode flag.Sets the parameter location.Sets the parameter name.Parameter.setRequired
(Boolean value) Sets the required flag.Parameter.setSchema
(SchemaInfo value) Sets the schema.Sets the style.Parameter.strict()
Methods in org.apache.juneau.bean.openapi3 that return types with arguments of type ParameterModifier and TypeMethodDescriptionComponents.getParameters()
Returns the parameters map.Operation.getParameters()
Returns the parameters list.PathItem.getParameters()
Returns the parameters list.Methods in org.apache.juneau.bean.openapi3 with parameters of type ParameterModifier and TypeMethodDescriptionOperation.addParameters
(Parameter... values) Bean property fluent setter:parameters .Operation.setParameters
(Parameter... value) Sets the parameters list.Method parameters in org.apache.juneau.bean.openapi3 with type arguments of type ParameterModifier and TypeMethodDescriptionOperation.addParameters
(Collection<Parameter> values) Bean property fluent setter:parameters .Components.setParameters
(Map<String, Parameter> value) Sets the parameters map.Operation.setParameters
(List<Parameter> value) Sets the parameters list.PathItem.setParameters
(List<Parameter> value) Sets the parameters list.Constructors in org.apache.juneau.bean.openapi3 with parameters of type Parameter