com.sun.jersey.api.core
Interface HttpContext

All Known Subinterfaces:
UriRuleContext

public interface HttpContext

A HttpContext makes it possible for a web resource implementation class to access and manipulate HTTP request and response information directly. Typically a HttpContext is injected on to a resource class using the annotation Context.


Method Summary
 java.util.Map<java.lang.String,java.lang.Object> getProperties()
          Get the mutable propertiee.
 HttpRequestContext getRequest()
          Get the HTTP request information.
 HttpResponseContext getResponse()
          Get the HTTP response information.
 ExtendedUriInfo getUriInfo()
          Get the extended URI information.
 

Method Detail

getUriInfo

ExtendedUriInfo getUriInfo()
Get the extended URI information.

Returns:
the extended URI information.

getRequest

HttpRequestContext getRequest()
Get the HTTP request information.

Returns:
the HTTP request information

getResponse

HttpResponseContext getResponse()
Get the HTTP response information.

Returns:
the HTTP response information

getProperties

java.util.Map<java.lang.String,java.lang.Object> getProperties()
Get the mutable propertiee.

Returns:
the properties.


Copyright © 2008 Sun Microsystems, Inc. All Rights Reserved.