Uses of Class
org.glassfish.jersey.server.JerseyContainerRequestContext

Packages that use JerseyContainerRequestContext
org.glassfish.jersey.server Jersey server-side classes. 
org.glassfish.jersey.server.internal.inject Jersey server-side JAX-RS injection support classes. 
org.glassfish.jersey.server.internal.routing Jersey server-side internal resource routing classes. 
org.glassfish.jersey.server.model Jersey server-side application & resource modeling classes. 
 

Uses of JerseyContainerRequestContext in org.glassfish.jersey.server
 

Methods in org.glassfish.jersey.server that return JerseyContainerRequestContext
 JerseyContainerRequestContext ContainerMessageBodyWorkersInitializer.apply(JerseyContainerRequestContext requestContext)
           
 JerseyContainerRequestContext JerseyContainerResponseContext.getRequestContext()
          Get the associated container request context paired with this response context.
 

Methods in org.glassfish.jersey.server with parameters of type JerseyContainerRequestContext
 JerseyContainerRequestContext ContainerMessageBodyWorkersInitializer.apply(JerseyContainerRequestContext requestContext)
           
 java.util.concurrent.Future<JerseyContainerResponseContext> ApplicationHandler.apply(JerseyContainerRequestContext requestContext)
          Invokes a request and returns the response future.
 java.util.concurrent.Future<JerseyContainerResponseContext> ApplicationHandler.apply(JerseyContainerRequestContext requestContext, java.io.OutputStream outputStream)
          Invokes a request and returns the response future.
 void ApplicationHandler.handle(JerseyContainerRequestContext requestContext)
          The main request/response processing entry point for Jersey container implementations.
 

Constructors in org.glassfish.jersey.server with parameters of type JerseyContainerRequestContext
JerseyContainerResponseContext(JerseyContainerRequestContext requestContext, Response response)
          Create a new Jersey container response context.
 

Uses of JerseyContainerRequestContext in org.glassfish.jersey.server.internal.inject
 

Methods in org.glassfish.jersey.server.internal.inject that return JerseyContainerRequestContext
 JerseyContainerRequestContext HttpContext.getRequestContext()
          Get the HTTP request information.
 

Uses of JerseyContainerRequestContext in org.glassfish.jersey.server.internal.routing
 

Methods in org.glassfish.jersey.server.internal.routing that return JerseyContainerRequestContext
 JerseyContainerRequestContext Router.Continuation.requestContext()
          Get the routed request context.
 

Methods in org.glassfish.jersey.server.internal.routing that return types with arguments of type JerseyContainerRequestContext
 Stage.Continuation<JerseyContainerRequestContext> RoutingStage.apply(JerseyContainerRequestContext request)
          

Routing stage navigates through the nested routing hierarchy using a depth-first transformation strategy until a request-to-response inflector is found on a leaf stage node, in which case the request routing is terminated and an inflector (if found) is pushed to the routing context.

 Stage.Continuation<JerseyContainerRequestContext> RoutedInflectorExtractorStage.apply(JerseyContainerRequestContext requestContext)
           
 Inflector<JerseyContainerRequestContext,JerseyContainerResponseContext> RoutingContext.getInflector()
          Get the matched request to response data inflector if present, or null otherwise.
 

Methods in org.glassfish.jersey.server.internal.routing with parameters of type JerseyContainerRequestContext
 Stage.Continuation<JerseyContainerRequestContext> RoutingStage.apply(JerseyContainerRequestContext request)
          

Routing stage navigates through the nested routing hierarchy using a depth-first transformation strategy until a request-to-response inflector is found on a leaf stage node, in which case the request routing is terminated and an inflector (if found) is pushed to the routing context.

 Router.Continuation Router.apply(JerseyContainerRequestContext data)
          Performs a request routing task and returns the routed request together with a routing continuation.
 Stage.Continuation<JerseyContainerRequestContext> RoutedInflectorExtractorStage.apply(JerseyContainerRequestContext requestContext)
           
static Router.Continuation Router.Continuation.of(JerseyContainerRequestContext result)
          Create a terminal continuation from the routed request.
static Router.Continuation Router.Continuation.of(JerseyContainerRequestContext result, java.lang.Iterable<Router> next)
          Create a continuation from the routed request and a collection of next level routers.
static Router.Continuation Router.Continuation.of(JerseyContainerRequestContext request, Router next)
          Create a continuation from the routed request and a single of next level routers.
 

Method parameters in org.glassfish.jersey.server.internal.routing with type arguments of type JerseyContainerRequestContext
 void RoutingContext.setInflector(Inflector<JerseyContainerRequestContext,JerseyContainerResponseContext> inflector)
          Set the matched request to response inflector.
 

Uses of JerseyContainerRequestContext in org.glassfish.jersey.server.model
 

Methods in org.glassfish.jersey.server.model with parameters of type JerseyContainerRequestContext
 JerseyContainerResponseContext ResourceMethodInvoker.apply(JerseyContainerRequestContext requestContext)
           
 



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