Uses of Interface
com.sun.jersey.api.core.HttpContext

Packages that use HttpContext
com.sun.jersey.api.container.filter Provides common server-side filters. 
com.sun.jersey.guice   
com.sun.jersey.oauth.server.api.resources   
com.sun.jersey.server.impl   
com.sun.jersey.server.impl.application   
com.sun.jersey.server.impl.container.servlet   
com.sun.jersey.server.impl.inject   
com.sun.jersey.server.impl.model.method   
com.sun.jersey.server.impl.model.method.dispatch   
com.sun.jersey.server.impl.resource   
com.sun.jersey.server.spi.component Provides support for components that are resource classes. 
com.sun.jersey.spi.container Provides support for containers and the web application that manages resource classes. 
com.sun.jersey.spi.dispatch Provides support for dispatching the HTTP request to a resource method of a resource class instance. 
com.sun.jersey.spi.uri.rules Provides support for hierarchical matching and accepting of URIs. 
 

Uses of HttpContext in com.sun.jersey.api.container.filter
 

Constructors in com.sun.jersey.api.container.filter with parameters of type HttpContext
ResourceDebuggingFilterFactory(HttpContext hc)
           
 

Uses of HttpContext in com.sun.jersey.guice
 

Methods in com.sun.jersey.guice that return HttpContext
 HttpContext JerseyServletModule.httpContext(WebApplication webApplication)
           
 

Uses of HttpContext in com.sun.jersey.oauth.server.api.resources
 

Methods in com.sun.jersey.oauth.server.api.resources with parameters of type HttpContext
 Response AccessTokenRequest.postAccessTokenRequest(HttpContext hc, Request req)
          POST method for creating a request for Rquest Token
 

Uses of HttpContext in com.sun.jersey.server.impl
 

Classes in com.sun.jersey.server.impl that implement HttpContext
 class ThreadLocalHttpContext
          Implementation of HttpContext using ThreadLocal to store HttpRequestContext and HttpResponseContext instances associated with threads.
 

Methods in com.sun.jersey.server.impl that return HttpContext
 HttpContext ThreadLocalHttpContext.get()
           
 

Methods in com.sun.jersey.server.impl with parameters of type HttpContext
 void ThreadLocalHttpContext.set(HttpContext context)
          Set the HttpContext for the current thread.
 

Uses of HttpContext in com.sun.jersey.server.impl.application
 

Classes in com.sun.jersey.server.impl.application that implement HttpContext
 class WebApplicationContext
           
 

Methods in com.sun.jersey.server.impl.application that return HttpContext
 HttpContext WebApplicationImpl.getThreadLocalHttpContext()
           
 

Methods in com.sun.jersey.server.impl.application with parameters of type HttpContext
 void CloseableServiceFactory.close(HttpContext context)
           
 

Constructors in com.sun.jersey.server.impl.application with parameters of type HttpContext
CloseableServiceFactory(HttpContext context)
           
 

Uses of HttpContext in com.sun.jersey.server.impl.container.servlet
 

Constructors in com.sun.jersey.server.impl.container.servlet with parameters of type HttpContext
PerSessionFactory(ServerInjectableProviderContext sipc, javax.servlet.ServletContext sc, javax.servlet.http.HttpServletRequest hsr, HttpContext threadLocalHc)
           
RequestDispatcherWrapper(javax.servlet.RequestDispatcher d, String basePath, HttpContext hc, Viewable v)
           
 

Uses of HttpContext in com.sun.jersey.server.impl.inject
 

Methods in com.sun.jersey.server.impl.inject with parameters of type HttpContext
 Object[] InjectableValuesProvider.getInjectableValues(HttpContext context)
          Get the injectable values.
abstract  T AbstractHttpContextInjectable.getValue(HttpContext c)
          Get the injectable value given the HttpContext.
 

Uses of HttpContext in com.sun.jersey.server.impl.model.method
 

Methods in com.sun.jersey.server.impl.model.method with parameters of type HttpContext
 void ResourceHttpOptionsMethod.OptionsRequestDispatcher.dispatch(Object resource, HttpContext context)
           
 

Uses of HttpContext in com.sun.jersey.server.impl.model.method.dispatch
 

Methods in com.sun.jersey.server.impl.model.method.dispatch with parameters of type HttpContext
protected abstract  void ResourceJavaMethodDispatcher._dispatch(Object resource, HttpContext context)
           
 void VoidVoidDispatchProvider.VoidVoidMethodInvoker._dispatch(Object resource, HttpContext context)
           
 void ResourceJavaMethodDispatcher.dispatch(Object resource, HttpContext context)
           
 

Uses of HttpContext in com.sun.jersey.server.impl.resource
 

Methods in com.sun.jersey.server.impl.resource with parameters of type HttpContext
static void PerRequestFactory.destroy(HttpContext hc)
           
 

Constructors in com.sun.jersey.server.impl.resource with parameters of type HttpContext
PerRequestFactory(ServerInjectableProviderContext sipc, HttpContext threadLocalHc)
           
 

Uses of HttpContext in com.sun.jersey.server.spi.component
 

Methods in com.sun.jersey.server.spi.component with parameters of type HttpContext
 Object ResourceComponentConstructor.construct(HttpContext hc)
           
 Object ResourceComponentProvider.getInstance(HttpContext hc)
          Get the instance.
 void ResourceComponentInjector.inject(HttpContext c, Object o)
          Inject onto an instance of a resource class.
 

Uses of HttpContext in com.sun.jersey.spi.container
 

Methods in com.sun.jersey.spi.container that return HttpContext
 HttpContext WebApplication.getThreadLocalHttpContext()
          Get an instance of HttpContext that is a proxy to a thread local instance of HttpContext.
 

Uses of HttpContext in com.sun.jersey.spi.dispatch
 

Methods in com.sun.jersey.spi.dispatch with parameters of type HttpContext
 void RequestDispatcher.dispatch(Object resource, HttpContext context)
          Dispatch to the resource method of the resource class instance.
 

Uses of HttpContext in com.sun.jersey.spi.uri.rules
 

Subinterfaces of HttpContext in com.sun.jersey.spi.uri.rules
 interface UriRuleContext
          The context for processing URI rules.
 



Copyright © 2013 Oracle Corporation. All Rights Reserved.