Uses of Interface
org.glassfish.jersey.process.Inflector

Packages that use Inflector
org.glassfish.jersey.process.internal Common Jersey internal processing classes. 
 

Uses of Inflector in org.glassfish.jersey.process.internal
 

Classes in org.glassfish.jersey.process.internal that implement Inflector
 class AsyncInflectorAdapter<REQUEST,RESPONSE>
          Suspendable, asynchronous inflector adapter that provides implementation of the request suspend/resume capabilities of the invocation context and returns a listenable response future instead of a plain response object.
 

Methods in org.glassfish.jersey.process.internal that return Inflector
static
<DATA,RESULT>
Inflector<DATA,RESULT>
Stages.extractInflector(Object stage)
          (Optionally) extracts an inflector from a processing stage, provided the stage implements Inflecting interface.
 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
static
<DATA,RESULT>
Stage<DATA>
Stages.asStage(Inflector<DATA,RESULT> inflector)
          Creates a terminal Stage that implements Inflecting interface and returns the provided Inflector instance when the Inflecting.inflector() method is called.
 AsyncInflectorAdapter<REQUEST,RESPONSE> AsyncInflectorAdapter.Builder.create(Inflector<REQUEST,RESPONSE> wrapped, InvocationCallback<RESPONSE> callback)
          Create a new asynchronous inflector adapter for an inflector.
 

Constructors in org.glassfish.jersey.process.internal with parameters of type Inflector
AsyncInflectorAdapter(Inflector<REQUEST,RESPONSE> wrapped, InvocationCallback<RESPONSE> callback)
          Construct and initialize asynchronous inflector adapter for an inflector.
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.