Uses of Interface
org.glassfish.jersey.process.Inflector
-
Packages that use Inflector Package Description org.glassfish.jersey.client.internal Jersey client-side internal classes.org.glassfish.jersey.client.spi Jersey client SPI classes/interfaces.org.glassfish.jersey.model.internal Common Jersey internal model related classes and interfaces.org.glassfish.jersey.process.internal Common Jersey internal processing classes.org.glassfish.jersey.server.model Jersey server-side application & resource modeling classes.org.glassfish.jersey.server.model.internal Jersey server-side internal model related and routing helper classes.org.glassfish.jersey.server.wadl.processor Jersey server-side WADLmodel processorclasses that extends resource model with resources and resource methods that produce WADL content. -
-
Uses of Inflector in org.glassfish.jersey.client.internal
Classes in org.glassfish.jersey.client.internal that implement Inflector Modifier and Type Class Description classHttpUrlConnectorDefault client transport connector usingHttpURLConnection. -
Uses of Inflector in org.glassfish.jersey.client.spi
Subinterfaces of Inflector in org.glassfish.jersey.client.spi Modifier and Type Interface Description interfaceConnectorClient transport connector extension contract. -
Uses of Inflector in org.glassfish.jersey.model.internal
Methods in org.glassfish.jersey.model.internal that return Inflector Modifier and Type Method Description protected Inflector<ContractProvider.Builder,ContractProvider>CommonConfig. getModelEnhancer(Class<?> componentClass)An extension point that provides a way how to define a custom enhancement/update operation of a contract provider model registration being produced for a given component class.Methods in org.glassfish.jersey.model.internal with parameters of type Inflector Modifier and Type Method Description booleanComponentBag. register(Class<?> componentClass, int priority, Inflector<ContractProvider.Builder,ContractProvider> modelEnhancer)Register a component class as a contract provider with an explicitly specified binding priority.booleanComponentBag. register(Class<?> componentClass, Map<Class<?>,Integer> contracts, Inflector<ContractProvider.Builder,ContractProvider> modelEnhancer)Register a component class as a contract provider for the specified contracts.booleanComponentBag. register(Class<?> componentClass, Set<Class<?>> contracts, Inflector<ContractProvider.Builder,ContractProvider> modelEnhancer)Register a component class as a contract provider for the specified contracts.booleanComponentBag. register(Class<?> componentClass, Inflector<ContractProvider.Builder,ContractProvider> modelEnhancer)Register a component class using a given registration strategy.booleanComponentBag. register(Object component, int priority, Inflector<ContractProvider.Builder,ContractProvider> modelEnhancer)Register a component as a contract provider with an explicitly specified binding priority.booleanComponentBag. register(Object component, Map<Class<?>,Integer> contracts, Inflector<ContractProvider.Builder,ContractProvider> modelEnhancer)Register a component as a contract provider for the specified contracts.booleanComponentBag. register(Object component, Set<Class<?>> contracts, Inflector<ContractProvider.Builder,ContractProvider> modelEnhancer)Register a component as a contract provider for the specified contracts.booleanComponentBag. register(Object component, Inflector<ContractProvider.Builder,ContractProvider> modelEnhancer)Register a component using a given registration strategy. -
Uses of Inflector in org.glassfish.jersey.process.internal
Methods in org.glassfish.jersey.process.internal with type parameters of type Inflector Modifier and Type Method Description static <DATA,RESULT,T extends Inflector<DATA,RESULT>>
TStages. extractInflector(Object stage)(Optionally) extracts aninflectorfrom a processing stage, provided the stage implementsInflectinginterface.static <DATA,RESULT,T extends Inflector<DATA,RESULT>>
DATAStages. process(DATA data, Stage<DATA> rootStage, org.glassfish.jersey.internal.util.collection.Ref<T> inflectorRef)Run the data through a chain of stages identified by the root stage.Methods in org.glassfish.jersey.process.internal that return Inflector Modifier and Type Method Description Inflector<DATA,RESULT>Inflecting. inflector()Get the inflector capable of transforming supplied data into a result.Methods in org.glassfish.jersey.process.internal with parameters of type Inflector Modifier and Type Method Description static <DATA,RESULT>
Stage<DATA>Stages. asStage(Inflector<DATA,RESULT> inflector)Creates a terminalStagethat implementsInflectinginterface and returns the providedInflectorinstance when theInflecting.inflector()method is called. -
Uses of Inflector in org.glassfish.jersey.server.model
Classes in org.glassfish.jersey.server.model that implement Inflector Modifier and Type Class Description classResourceMethodInvokerServer-side request-responseinflectorfor invoking methods of annotation-based resource classes.Methods in org.glassfish.jersey.server.model that return Inflector Modifier and Type Method Description Inflector<Request,T>Inflecting. getInflector()Get the inflector.Methods in org.glassfish.jersey.server.model with parameters of type Inflector Modifier and Type Method Description static <T> InvocableInvocable. create(Inflector<Request,T> inflector)Create a new resource method invocable model backed by an inflector instance.ResourceMethod.BuilderResourceMethod.Builder. handledBy(Inflector<ContainerRequestContext,?> inflector)Define an inflector-based resource method handler binding.Method parameters in org.glassfish.jersey.server.model with type arguments of type Inflector Modifier and Type Method Description static InvocableInvocable. create(Class<? extends Inflector> inflectorClass)Create a new resource method invocable model backed by an inflector class.ResourceMethod.BuilderResourceMethod.Builder. handledBy(Class<? extends Inflector> inflectorClass)Define an inflector-based resource method handler binding. -
Uses of Inflector in org.glassfish.jersey.server.model.internal
Constructors in org.glassfish.jersey.server.model.internal with parameters of type Inflector Constructor Description Method(String httpMethod, MediaType consumes, MediaType produces, Inflector<ContainerRequestContext,Response> inflector)Create new method instance.Method(String path, String httpMethod, MediaType consumes, MediaType produces, Inflector<ContainerRequestContext,Response> inflector)Create new method instance.Method(String path, String httpMethod, List<MediaType> consumes, List<MediaType> produces, Inflector<ContainerRequestContext,Response> inflector)Create new method instance.Method(String httpMethod, List<MediaType> consumes, List<MediaType> produces, Inflector<ContainerRequestContext,Response> inflector)Create new method instance.Constructor parameters in org.glassfish.jersey.server.model.internal with type arguments of type Inflector Constructor Description Method(String httpMethod, MediaType consumes, MediaType produces, Class<? extends Inflector<ContainerRequestContext,Response>> inflector)Create new method instance.Method(String path, String httpMethod, MediaType consumes, MediaType produces, Class<? extends Inflector<ContainerRequestContext,Response>> inflector)Create new method instance.Method(String path, String httpMethod, List<MediaType> consumes, List<MediaType> produces, Class<? extends Inflector<ContainerRequestContext,Response>> inflectorClass)Create new method instance.Method(String httpMethod, List<MediaType> consumes, List<MediaType> produces, Class<? extends Inflector<ContainerRequestContext,Response>> inflector)Create new method instance. -
Uses of Inflector in org.glassfish.jersey.server.wadl.processor
Classes in org.glassfish.jersey.server.wadl.processor that implement Inflector Modifier and Type Class Description static classWadlModelProcessor.OptionsHandlerOPTIONS resource method handler that serves resource WADL.
-