Uses of Class
org.glassfish.jersey.server.model.Parameter.Source
-
Packages that use Parameter.Source Package Description org.glassfish.jersey.server.internal.inject Jersey server-side JAX-RS injection support classes.org.glassfish.jersey.server.model Jersey server-side application & resource modeling classes.org.glassfish.jersey.server.spi.internal Jersey server-side internal service provider contract (SPI) classes. -
-
Uses of Parameter.Source in org.glassfish.jersey.server.internal.inject
Fields in org.glassfish.jersey.server.internal.inject with type parameters of type Parameter.Source Modifier and Type Field Description private java.util.Set<Parameter.Source>
AbstractValueParamProvider. compatibleSources
Constructors in org.glassfish.jersey.server.internal.inject with parameters of type Parameter.Source Constructor Description AbstractValueParamProvider(javax.inject.Provider<MultivaluedParameterExtractorProvider> mpep, Parameter.Source... compatibleSources)
Initialize the provider. -
Uses of Parameter.Source in org.glassfish.jersey.server.model
Fields in org.glassfish.jersey.server.model declared as Parameter.Source Modifier and Type Field Description private Parameter.Source
Parameter. source
Methods in org.glassfish.jersey.server.model that return Parameter.Source Modifier and Type Method Description Parameter.Source
Parameter. getSource()
Get the parameter value source type.Parameter.Source
Parameter.ParamAnnotationHelper. getSource()
static Parameter.Source
Parameter.Source. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Parameter.Source[]
Parameter.Source. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.glassfish.jersey.server.model with parameters of type Parameter.Source Modifier and Type Method Description static Parameter
Parameter. overrideSource(Parameter original, Parameter.Source source)
Create new parameter model by overridingsource
of the original parameter model.Constructors in org.glassfish.jersey.server.model with parameters of type Parameter.Source Constructor Description Parameter(java.lang.annotation.Annotation[] markers, java.lang.annotation.Annotation marker, Parameter.Source source, java.lang.String sourceName, java.lang.Class<?> rawType, java.lang.reflect.Type type, boolean encoded, java.lang.String defaultValue)
-
Uses of Parameter.Source in org.glassfish.jersey.server.spi.internal
Fields in org.glassfish.jersey.server.spi.internal declared as Parameter.Source Modifier and Type Field Description private Parameter.Source
ParamValueFactoryWithSource. parameterSource
Methods in org.glassfish.jersey.server.spi.internal that return Parameter.Source Modifier and Type Method Description Parameter.Source
ParamValueFactoryWithSource. getSource()
ReturnsParameter.Source
which closely determines a function of the current supplier.Methods in org.glassfish.jersey.server.spi.internal with parameters of type Parameter.Source Modifier and Type Method Description private static <T> ParamValueFactoryWithSource<T>
ParameterValueHelper. wrapParamValueProvider(java.util.function.Function<ContainerRequest,T> factory, Parameter.Source paramSource)
Constructors in org.glassfish.jersey.server.spi.internal with parameters of type Parameter.Source Constructor Description ParamValueFactoryWithSource(java.util.function.Function<ContainerRequest,T> paramFunction, Parameter.Source parameterSource)
Wrap provided param supplier.
-