Package | Description |
---|---|
org.glassfish.jersey.client |
Jersey client-side classes.
|
org.glassfish.jersey.process.internal |
Common Jersey internal processing classes.
|
org.glassfish.jersey.server |
Jersey server-side classes.
|
org.glassfish.jersey.server.internal.process |
Jersey server-side internal classes related to request and response processing.
|
org.glassfish.jersey.server.internal.routing |
Jersey server-side internal resource routing classes.
|
Modifier and Type | Class and Description |
---|---|
private static class |
ClientFilteringStages.RequestFilteringStage |
private static class |
ClientFilteringStages.ResponseFilterStage |
Modifier and Type | Method and Description |
---|---|
(package private) static ChainableStage<ClientRequest> |
ClientFilteringStages.createRequestFilteringStage(org.glassfish.hk2.api.ServiceLocator locator)
Create client request filtering stage using the service locator.
|
(package private) static ChainableStage<ClientResponse> |
ClientFilteringStages.createResponseFilteringStage(org.glassfish.hk2.api.ServiceLocator locator)
Create client response filtering stage using the service locator.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractChainableStage<DATA>
Abstract chainable linear acceptor.
|
Modifier and Type | Field and Description |
---|---|
private static ChainableStage |
Stages.IDENTITY |
private ChainableStage<DATA> |
Stages.StageChainBuilder.lastStage |
Modifier and Type | Method and Description |
---|---|
static <DATA> ChainableStage<DATA> |
Stages.identity()
Get a chainable "identity" stage.
|
Modifier and Type | Method and Description |
---|---|
static <DATA> Stage.Builder<DATA> |
Stages.chain(ChainableStage<DATA> rootStage)
Start building a stage chain.
|
Stage.Builder<DATA> |
Stage.Builder.to(ChainableStage<DATA> stage)
Add a new
chainable stage as a next stage to the
stage chain. |
Stage.Builder<DATA> |
Stages.StageChainBuilder.to(ChainableStage<DATA> stage) |
Constructor and Description |
---|
StageChainBuilder(ChainableStage<DATA> rootStage) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
ContainerFilteringStage
Container filtering stage responsible for execution of request and response filters
on each request-response message exchange.
|
private static class |
ContainerFilteringStage.ResponseFilterStage |
Modifier and Type | Method and Description |
---|---|
void |
DefaultRespondingContext.push(ChainableStage<ContainerResponse> stage) |
void |
RequestProcessingContext.push(ChainableStage<ContainerResponse> stage) |
void |
RespondingContext.push(ChainableStage<ContainerResponse> stage)
Push chainable response transformation stage that should be applied.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
RoutingStage
Request pre-processing stage that encapsulates hierarchical resource matching
and request routing.
|
Modifier and Type | Method and Description |
---|---|
ChainableStage<RequestProcessingContext> |
Routing.Builder.buildStage()
Build routing stage.
|