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 FilteringInflector
           
 class RequestInvoker
          Request invoker is the main request to response processing entry point.
 

Methods in org.glassfish.jersey.process.internal that return Inflector
 Inflector<DATA,RESULT> Inflecting.inflector()
          Get the inflector capable of transforming supplied data into a result.
 

Methods in org.glassfish.jersey.process.internal that return types with arguments of type Inflector
 Pair<Request,com.google.common.base.Optional<Inflector<Request,Response>>> RequestProcessor.apply(Request request)
          Traverse through the nested request stages and apply request transformations until a terminal stage providing a request-to-response inflector is reached.
 Pair<Request,com.google.common.base.Optional<Inflector<Request,Response>>> LinearRequestProcessor.apply(Request request)
          Traverse through the nested request stages and apply request transformations until a terminal stage providing a request-to-response inflector is reached.
 Pair<Request,com.google.common.base.Optional<Inflector<Request,Response>>> HierarchicalRequestProcessor.apply(Request request)
          Traverse through the nested request stages and apply request transformations until a terminal stage providing a request-to-response inflector is reached.
static
<DATA,RESULT>
com.google.common.base.Optional<Inflector<DATA,RESULT>>
Stages.extractInflector(Stage<DATA,?> stage)
          (Optionally) extracts an inflector from a stage, provided the stage implements Inflecting interface.
 

Methods in org.glassfish.jersey.process.internal with parameters of type Inflector
static LinearAcceptor Stages.asLinearAcceptor(Inflector<Request,Response> inflector)
          Creates a terminal LinearAcceptor that implements Inflecting interface and returns the provided Inflector instance when the Inflecting.inflector() method is called.
static TreeAcceptor Stages.asTreeAcceptor(Inflector<Request,Response> inflector)
          Creates a leaf-node TreeAcceptor that implements Inflecting interface and returns the provided Inflector instance when the Inflecting.inflector() method is called.
 FilteringInflector FilteringInflector.Builder.build(Inflector<Request,Response> wrapped)
           
 



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