Uses of Interface
org.glassfish.jersey.process.internal.Stage
Packages that use Stage
Package
Description
Common Jersey internal processing classes.
-
Uses of Stage in org.glassfish.jersey.process.internal
Subinterfaces of Stage in org.glassfish.jersey.process.internalModifier and TypeInterfaceDescriptioninterfaceChainableStage<DATA>Linear acceptor that can be composed into a chain.Classes in org.glassfish.jersey.process.internal that implement StageModifier and TypeClassDescriptionclassAbstractChainableStage<DATA>Abstract chainable linear acceptor.static classStages.LinkedStage<DATA>Linked linear stage implementation.Methods in org.glassfish.jersey.process.internal that return StageModifier and TypeMethodDescriptionstatic <DATA,RESULT>
Stage<DATA>Creates a terminalStagethat implementsInflectinginterface and returns the providedInflectorinstance when theInflecting.inflector()method is called.Stage.Builder.build()Build a stage chain.Add a terminal stage to the stage chain and build the chain.AbstractChainableStage.getDefaultNext()Get the default next stage currently configured on the acceptor.Stage.Continuation.next()Get the stage to be invoked next ornullif no next stage ispresent.Methods in org.glassfish.jersey.process.internal with parameters of type StageModifier and TypeMethodDescriptionAdd a terminal stage to the stage chain and build the chain.static <DATA> Stage.Continuation<DATA>Create a continuation from the processed data result and the stage to be invoked next.static <DATA> DATARun the data through a chain of stages identified by the root stage.static <DATA,RESULT, T extends Inflector<DATA, RESULT>>
DATARun the data through a chain of stages identified by the root stage.final voidAbstractChainableStage.setDefaultNext(Stage<DATA> next) voidChainableStage.setDefaultNext(Stage<DATA> next) Set the default next stage that should be returned from this stage after it has been invoked by default.Constructors in org.glassfish.jersey.process.internal with parameters of type StageModifierConstructorDescriptionprotectedAbstractChainableStage(Stage<DATA> nextStage) Create a new chainable acceptor with an initialized default next stage value.Create a new stage that will return the supplied stage in the continuation.