Uses of Interface
org.glassfish.jersey.process.internal.Stage

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

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

Subinterfaces of Stage in org.glassfish.jersey.process.internal
 interface LinearAcceptor
          Linear request acceptor.
 interface RequestProcessor
          Applies all request transformations and returns a continuation with the transformed request on the left side and an (optional) request-to-response inflector on the right side.
 interface Responder
          Linear response processing stage.
 interface TreeAcceptor
          Hierarchical request acceptor.
 

Classes in org.glassfish.jersey.process.internal that implement Stage
 class HierarchicalRequestProcessor
          A composite hierarchical request processor.
 class LinearRequestProcessor
          A composite linear acceptor request processor.
 class PreMatchRequestFilterAcceptor
           
 class RequestFilterAcceptor
           
 

Methods in org.glassfish.jersey.process.internal that return types with arguments of type Stage
 com.google.common.base.Optional<Stage<DATA,?>> StagingContext.lastStage()
          Get the last stage applied in the current staging context.
 com.google.common.base.Optional<Stage<DATA,?>> DefaultStagingContext.lastStage()
           
 

Methods in org.glassfish.jersey.process.internal with parameters of type Stage
protected  void DefaultStagingContext.after(Stage<DATA,?> stage, DATA data)
          Protected callbacks to be overridden to provide custom implementation executed as part of the the after stage callback method.
 void StagingContext.afterStage(Stage<DATA,?> stage, DATA data)
          Callback method invoked after each stage in the continuation of stages is applied.
 void DefaultStagingContext.afterStage(Stage<DATA,?> stage, DATA data)
           
protected  void DefaultStagingContext.before(Stage<DATA,?> stage, DATA data)
          Protected callbacks to be overridden to provide custom implementation executed as part of the the before stage callback method.
 void StagingContext.beforeStage(Stage<DATA,?> stage, DATA data)
          Callback method invoked before each stage in the continuation of stages is applied.
 void DefaultStagingContext.beforeStage(Stage<DATA,?> stage, DATA data)
           
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.
 

Constructors in org.glassfish.jersey.process.internal with parameters of type Stage
DefaultStagingContext(Stage<DATA,?> lastStage, DATA data)
          Protected constructor that sets the initial value of the last applied stage as well as actual state of the transformed data to a custom stage supplied in the constructor parameter.
 



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