Uses of Interface
org.glassfish.jersey.process.Inflector
Package
Description
Jersey client-side internal classes.
Jersey client SPI classes/interfaces.
Jersey Jdk
connector
internal classes.Jersey client
connector
based on
Java's HttpClient
.Common Jersey internal model related classes and interfaces.
Common Jersey internal processing classes.
Jersey server-side application & resource modeling classes.
Jersey server-side internal model related and routing helper classes.
Jersey server-side WADL
model processor
classes
that extends resource model with resources and resource methods that produce WADL content.-
Uses of Inflector in org.glassfish.jersey.client.internal
Modifier and TypeClassDescriptionclass
Default client transport connector usingHttpURLConnection
. -
Uses of Inflector in org.glassfish.jersey.client.spi
Modifier and TypeInterfaceDescriptioninterface
Client transport connector extension contract. -
Uses of Inflector in org.glassfish.jersey.jdk.connector.internal
-
Uses of Inflector in org.glassfish.jersey.jnh.connector
Modifier and TypeClassDescriptionclass
Provides a Jersey clientConnector
, which internally uses Java'sHttpClient
. -
Uses of Inflector in org.glassfish.jersey.model.internal
Modifier and TypeMethodDescriptionprotected 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.Modifier and TypeMethodDescriptionboolean
ComponentBag.register
(Class<?> componentClass, int priority, Inflector<ContractProvider.Builder, ContractProvider> modelEnhancer) Register a component class as a contract provider with an explicitly specified binding priority.boolean
ComponentBag.register
(Class<?> componentClass, Map<Class<?>, Integer> contracts, Inflector<ContractProvider.Builder, ContractProvider> modelEnhancer) Register a component class as a contract provider for the specified contracts.boolean
ComponentBag.register
(Class<?> componentClass, Set<Class<?>> contracts, Inflector<ContractProvider.Builder, ContractProvider> modelEnhancer) Register a component class as a contract provider for the specified contracts.boolean
ComponentBag.register
(Class<?> componentClass, Inflector<ContractProvider.Builder, ContractProvider> modelEnhancer) Register a component class using a given registration strategy.boolean
ComponentBag.register
(Object component, int priority, Inflector<ContractProvider.Builder, ContractProvider> modelEnhancer) Register a component as a contract provider with an explicitly specified binding priority.boolean
ComponentBag.register
(Object component, Map<Class<?>, Integer> contracts, Inflector<ContractProvider.Builder, ContractProvider> modelEnhancer) Register a component as a contract provider for the specified contracts.boolean
ComponentBag.register
(Object component, Set<Class<?>> contracts, Inflector<ContractProvider.Builder, ContractProvider> modelEnhancer) Register a component as a contract provider for the specified contracts.boolean
ComponentBag.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
Modifier and TypeMethodDescriptionstatic <DATA,
RESULT, T extends Inflector<DATA, RESULT>>
TStages.extractInflector
(Object stage) (Optionally) extracts aninflector
from a processing stage, provided the stage implementsInflecting
interface.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.Modifier and TypeMethodDescriptionInflecting.inflector()
Get the inflector capable of transforming supplied data into a result.Modifier and TypeMethodDescriptionstatic <DATA,
RESULT>
Stage<DATA>Creates a terminalStage
that implementsInflecting
interface and returns the providedInflector
instance when theInflecting.inflector()
method is called. -
Uses of Inflector in org.glassfish.jersey.server.model
Modifier and TypeClassDescriptionclass
Server-side request-responseinflector
for invoking methods of annotation-based resource classes.Modifier and TypeMethodDescriptionstatic <T> Invocable
Create a new resource method invocable model backed by an inflector instance.ResourceMethod.Builder.handledBy
(Inflector<ContainerRequestContext, ?> inflector) Define an inflector-based resource method handler binding.Modifier and TypeMethodDescriptionstatic Invocable
Create a new resource method invocable model backed by an inflector class.Define an inflector-based resource method handler binding. -
Uses of Inflector in org.glassfish.jersey.server.model.internal
ModifierConstructorDescriptionMethod
(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.ModifierConstructorDescriptionMethod
(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
Modifier and TypeClassDescriptionstatic class
OPTIONS resource method handler that serves resource WADL.