Class MatchedEndpointExtractorStage
- java.lang.Object
-
- org.glassfish.jersey.server.internal.routing.MatchedEndpointExtractorStage
-
- All Implemented Interfaces:
Stage<RequestProcessingContext>
final class MatchedEndpointExtractorStage extends java.lang.Object implements Stage<RequestProcessingContext>
Request pre-processing stage thatextracts an inflector from a routing contextwhere it was previously stored by therequest to resource matching stageand (if available) returns the inflector wrapped in a next terminal stage. This request pre-processing stage should be a final stage in the request processing chain.- See Also:
RoutingStage
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.glassfish.jersey.process.internal.Stage
Stage.Builder<DATA>, Stage.Continuation<DATA>
-
-
Constructor Summary
Constructors Constructor Description MatchedEndpointExtractorStage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stage.Continuation<RequestProcessingContext>apply(RequestProcessingContext processingContext)Performs a data processing task and returns the processed data together with aprocessing continuation.
-
-
-
Method Detail
-
apply
public Stage.Continuation<RequestProcessingContext> apply(RequestProcessingContext processingContext)
Description copied from interface:StagePerforms a data processing task and returns the processed data together with aprocessing continuation.- Specified by:
applyin interfaceStage<RequestProcessingContext>- Parameters:
processingContext- data to be transformed.- Returns:
- a processing continuation.
-
-