Class MatchedEndpointExtractorStage
java.lang.Object
org.glassfish.jersey.server.internal.routing.MatchedEndpointExtractorStage
- All Implemented Interfaces:
Stage<RequestProcessingContext>
Request pre-processing stage that
extracts
an inflector from a routing context
where it was previously stored by the
request to resource matching stage
and
(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:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.glassfish.jersey.process.internal.Stage
Stage.Builder<DATA>, Stage.Continuation<DATA>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapply
(RequestProcessingContext processingContext) Performs a data processing task and returns the processed data together with aprocessing continuation
.
-
Constructor Details
-
MatchedEndpointExtractorStage
MatchedEndpointExtractorStage()
-
-
Method Details
-
apply
public Stage.Continuation<RequestProcessingContext> apply(RequestProcessingContext processingContext) Description copied from interface:Stage
Performs a data processing task and returns the processed data together with aprocessing continuation
.- Specified by:
apply
in interfaceStage<RequestProcessingContext>
- Parameters:
processingContext
- data to be transformed.- Returns:
- a processing continuation.
-