com.sun.jersey.spi.container
Class ContainerRequest

java.lang.Object
  extended by com.sun.jersey.spi.container.ContainerRequest
All Implemented Interfaces:
HttpRequestContext, Traceable, HttpHeaders, Request, SecurityContext
Direct Known Subclasses:
AdaptingContainerRequest

public class ContainerRequest
extends java.lang.Object
implements HttpRequestContext

An in-bound HTTP request to be processed by the web application.

Containers instantiate, or inherit, and provide an instance to the WebApplication.

By default the implementation of SecurityContext will throw UnsupportedOperationException if the methods are invoked. Containers SHOULD use the method setSecurityContext(javax.ws.rs.core.SecurityContext) to define security context behaviour rather than extending from this class and overriding the methods.

Author:
[email protected], [email protected]

Field Summary
static java.lang.String VARY_HEADER
           
 
Fields inherited from interface javax.ws.rs.core.HttpHeaders
ACCEPT, ACCEPT_CHARSET, ACCEPT_ENCODING, ACCEPT_LANGUAGE, AUTHORIZATION, CACHE_CONTROL, CONTENT_ENCODING, CONTENT_LANGUAGE, CONTENT_LENGTH, CONTENT_LOCATION, CONTENT_TYPE, COOKIE, DATE, ETAG, EXPIRES, HOST, IF_MATCH, IF_MODIFIED_SINCE, IF_NONE_MATCH, IF_UNMODIFIED_SINCE, LAST_MODIFIED, LOCATION, SET_COOKIE, USER_AGENT, VARY, WWW_AUTHENTICATE
 
Fields inherited from interface javax.ws.rs.core.SecurityContext
BASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH
 
Constructor Summary
ContainerRequest(WebApplication wa, java.lang.String method, java.net.URI baseUri, java.net.URI requestUri, InBoundHeaders headers, java.io.InputStream entity)
          Create a new container request.
 
Method Summary
 Response.ResponseBuilder evaluatePreconditions()
          Evaluate request preconditions for a resource that does not currently exist.
 Response.ResponseBuilder evaluatePreconditions(java.util.Date lastModified)
          Evaluate request preconditions based on the passed in value.
 Response.ResponseBuilder evaluatePreconditions(java.util.Date lastModified, EntityTag eTag)
          Evaluate request preconditions based on the passed in value.
 Response.ResponseBuilder evaluatePreconditions(EntityTag eTag)
          Evaluate request preconditions based on the passed in value.
 java.net.URI getAbsolutePath()
          Get the absolute path of the request.
 UriBuilder getAbsolutePathBuilder()
          Get the absolute path of the request in the form of a UriBuilder.
 java.util.List<java.util.Locale> getAcceptableLanguages()
          Get a list of languages that are acceptable for the response.
 MediaType getAcceptableMediaType(java.util.List<MediaType> mediaTypes)
          Select the first media type, from a list of media types, that is most acceptable according to the requested acceptable media types.
 java.util.List<MediaType> getAcceptableMediaTypes()
          Get a list of media types that are acceptable for the response.
 java.util.List<MediaType> getAcceptableMediaTypes(java.util.List<QualitySourceMediaType> priorityMediaTypes)
          Get a list of media types that are acceptable for the response.
 java.lang.String getAuthenticationScheme()
          Returns the string value of the authentication scheme used to protect the resource.
 java.net.URI getBaseUri()
          Get the base URI of the application.
 UriBuilder getBaseUriBuilder()
          Get the base URI of the application in the form of a UriBuilder.
 MultivaluedMap<java.lang.String,java.lang.String> getCookieNameValueMap()
          Get the cookie name value map.
 java.util.Map<java.lang.String,Cookie> getCookies()
          Get any cookies that accompanied the request.
<T> T
getEntity(java.lang.Class<T> type)
          Get the request entity, returns null if the request does not contain an entity body.
<T> T
getEntity(java.lang.Class<T> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] as)
          Get the request entity, returns null if the request does not contain an entity body.
 java.io.InputStream getEntityInputStream()
          Get the input stream of the entity.
 Form getFormParameters()
          Get the form parameters of the request entity.
 java.lang.String getHeaderValue(java.lang.String name)
          Get a HTTP header value.
 java.util.Locale getLanguage()
          Get the language of the request entity
 MediaType getMediaType()
          Get the media type of the request entity
 MessageBodyWorkers getMessageBodyWorkers()
          Get the message body workers.
 java.lang.String getMethod()
          Get the request method, e.g.
 java.lang.String getPath()
          Get the path of the current request relative to the base URI as a string.
 java.lang.String getPath(boolean decode)
          Get the path of the current request relative to the base URI as a string.
 java.util.List<PathSegment> getPathSegments()
          Get the path of the current request relative to the base URI as a list of PathSegment.
 java.util.List<PathSegment> getPathSegments(boolean decode)
          Get the path of the current request relative to the base URI as a list of PathSegment.
 java.util.Map<java.lang.String,java.lang.Object> getProperties()
          Get the mutable properties.
 MultivaluedMap<java.lang.String,java.lang.String> getQueryParameters()
          Get the URI query parameters of the current request.
 MultivaluedMap<java.lang.String,java.lang.String> getQueryParameters(boolean decode)
          Get the URI query parameters of the current request.
 java.util.List<java.lang.String> getRequestHeader(java.lang.String name)
          Get the values of a HTTP request header.
 MultivaluedMap<java.lang.String,java.lang.String> getRequestHeaders()
          Get the values of HTTP request headers.
 java.net.URI getRequestUri()
          Get the absolute request URI.
 UriBuilder getRequestUriBuilder()
          Get the absolute request URI in the form of a UriBuilder.
 java.security.Principal getUserPrincipal()
          Returns a java.security.Principal object containing the name of the current authenticated user.
 boolean isSecure()
          Returns a boolean indicating whether this request was made using a secure channel, such as HTTPS.
 boolean isTracingEnabled()
          Check if tracing is enabled.
 boolean isUserInRole(java.lang.String role)
          Returns a boolean indicating whether the authenticated user is included in the specified logical "role".
 Variant selectVariant(java.util.List<Variant> variants)
          Select the representation variant that best matches the request.
<T> void
setEntity(java.lang.Class<T> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, T entity)
          Set the request entity.
 void setEntityInputStream(java.io.InputStream entity)
          Set the input stream of the entity.
 void setHeaders(InBoundHeaders headers)
          Set the request headers.
 void setMethod(java.lang.String method)
          Set the HTTP method.
 void setSecurityContext(SecurityContext securityContext)
          Set the security context.
 void setUris(java.net.URI baseUri, java.net.URI requestUri)
          Set the base and request URI.
 void trace(java.lang.String message)
          Add a trace message.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

VARY_HEADER

public static final java.lang.String VARY_HEADER
See Also:
Constant Field Values
Constructor Detail

ContainerRequest

public ContainerRequest(WebApplication wa,
                        java.lang.String method,
                        java.net.URI baseUri,
                        java.net.URI requestUri,
                        InBoundHeaders headers,
                        java.io.InputStream entity)
Create a new container request.

The base URI and the request URI must contain the same scheme, user info, host and port components.

The base URI must not contain the query and fragment components. The encoded path component of the request URI must start with the encoded path component of the base URI. The encoded path component of the base URI must end in a '/' character.

Parameters:
wa - the web application
method - the HTTP method
baseUri - the base URI of the request
requestUri - the request URI
headers - the request headers
entity - the InputStream of the request entity
Method Detail

getProperties

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

Care should be taken not to clear the properties or remove properties that are unknown otherwise unspecified behaviour may result.

Returns:
the properties.

setMethod

public void setMethod(java.lang.String method)
Set the HTTP method.

Parameters:
method - the method.

setUris

public void setUris(java.net.URI baseUri,
                    java.net.URI requestUri)
Set the base and request URI.

Parameters:
baseUri - the base URI.
requestUri - the (complete) request URI.

getEntityInputStream

public java.io.InputStream getEntityInputStream()
Get the input stream of the entity.

Returns:
the input stream of the entity.

setEntityInputStream

public void setEntityInputStream(java.io.InputStream entity)
Set the input stream of the entity.

Parameters:
entity - the input stream of the entity.

setHeaders

public void setHeaders(InBoundHeaders headers)
Set the request headers.

Parameters:
headers - the request headers.

setSecurityContext

public void setSecurityContext(SecurityContext securityContext)
Set the security context.

Parameters:
securityContext - the security context.

getMessageBodyWorkers

public MessageBodyWorkers getMessageBodyWorkers()
Get the message body workers.

Returns:
the message body workers.

isTracingEnabled

public boolean isTracingEnabled()
Description copied from interface: Traceable
Check if tracing is enabled.

Specified by:
isTracingEnabled in interface Traceable
Returns:
true if tracing is enabled, otherwise false.

trace

public void trace(java.lang.String message)
Description copied from interface: Traceable
Add a trace message.

A trace message will be added if Traceable.isTracingEnabled() returns true and tracing contraints are satisfied.

Specified by:
trace in interface Traceable
Parameters:
message - the trace message to add.

getBaseUri

public java.net.URI getBaseUri()
Description copied from interface: HttpRequestContext
Get the base URI of the application. URIs of root resource classes are all relative to this base URI.

Specified by:
getBaseUri in interface HttpRequestContext
Returns:
the base URI of the application

getBaseUriBuilder

public UriBuilder getBaseUriBuilder()
Description copied from interface: HttpRequestContext
Get the base URI of the application in the form of a UriBuilder.

Specified by:
getBaseUriBuilder in interface HttpRequestContext
Returns:
a UriBuilder initialized with the base URI of the application.

getRequestUri

public java.net.URI getRequestUri()
Description copied from interface: HttpRequestContext
Get the absolute request URI. This includes query parameters and any supplied fragment.

Specified by:
getRequestUri in interface HttpRequestContext
Returns:
the absolute request URI

getRequestUriBuilder

public UriBuilder getRequestUriBuilder()
Description copied from interface: HttpRequestContext
Get the absolute request URI in the form of a UriBuilder.

Specified by:
getRequestUriBuilder in interface HttpRequestContext
Returns:
a UriBuilder initialized with the absolute request URI

getAbsolutePath

public java.net.URI getAbsolutePath()
Description copied from interface: HttpRequestContext
Get the absolute path of the request. This includes everything preceding the path (host, port etc) but excludes query parameters and fragment. This is a shortcut for uriInfo.getBase().resolve(uriInfo.getPath()).

Specified by:
getAbsolutePath in interface HttpRequestContext
Returns:
the absolute path of the request

getAbsolutePathBuilder

public UriBuilder getAbsolutePathBuilder()
Description copied from interface: HttpRequestContext
Get the absolute path of the request in the form of a UriBuilder. This includes everything preceding the path (host, port etc) but excludes query parameters and fragment.

Specified by:
getAbsolutePathBuilder in interface HttpRequestContext
Returns:
a UriBuilder initialized with the absolute path of the request

getPath

public java.lang.String getPath()
Description copied from interface: HttpRequestContext
Get the path of the current request relative to the base URI as a string. All sequences of escaped octets are decoded, equivalent to getPath(true).

Specified by:
getPath in interface HttpRequestContext
Returns:
the relative URI path

getPath

public java.lang.String getPath(boolean decode)
Description copied from interface: HttpRequestContext
Get the path of the current request relative to the base URI as a string.

Specified by:
getPath in interface HttpRequestContext
Parameters:
decode - controls whether sequences of escaped octets are decoded (true) or not (false).
Returns:
the relative URI path

getPathSegments

public java.util.List<PathSegment> getPathSegments()
Description copied from interface: HttpRequestContext
Get the path of the current request relative to the base URI as a list of PathSegment. This method is useful when the path needs to be parsed, particularly when matrix parameters may be present in the path. All sequences of escaped octets in path segments and matrix parameter names and values are decoded, equivalent to getPathSegments(true).

Specified by:
getPathSegments in interface HttpRequestContext
Returns:
an unmodifiable list of PathSegment. The matrix parameter map of each path segment is also unmodifiable.
See Also:
PathSegment, Matrix URIs

getPathSegments

public java.util.List<PathSegment> getPathSegments(boolean decode)
Description copied from interface: HttpRequestContext
Get the path of the current request relative to the base URI as a list of PathSegment. This method is useful when the path needs to be parsed, particularly when matrix parameters may be present in the path.

Specified by:
getPathSegments in interface HttpRequestContext
Parameters:
decode - controls whether sequences of escaped octets in path segments and matrix parameter names and values are decoded (true) or not (false).
Returns:
an unmodifiable list of PathSegment. The matrix parameter map of each path segment is also unmodifiable.
See Also:
PathSegment, Matrix URIs

getQueryParameters

public MultivaluedMap<java.lang.String,java.lang.String> getQueryParameters()
Description copied from interface: HttpRequestContext
Get the URI query parameters of the current request. All sequences of escaped octets in parameter names and values are decoded, equivalent to getQueryParameters(true).

Specified by:
getQueryParameters in interface HttpRequestContext
Returns:
an unmodifiable map of query parameter names and values

getQueryParameters

public MultivaluedMap<java.lang.String,java.lang.String> getQueryParameters(boolean decode)
Description copied from interface: HttpRequestContext
Get the URI query parameters of the current request.

Specified by:
getQueryParameters in interface HttpRequestContext
Parameters:
decode - controls whether sequences of escaped octets in parameter names and values are decoded (true) or not (false).
Returns:
an unmodifiable map of query parameter names and values

getHeaderValue

public java.lang.String getHeaderValue(java.lang.String name)
Description copied from interface: HttpRequestContext
Get a HTTP header value.

Specified by:
getHeaderValue in interface HttpRequestContext
Parameters:
name - the HTTP header
Returns:
the HTTP header value. If the HTTP header is not present then null is returned. If the HTTP header is present but has no value then the empty string is returned. If the HTTP header is present more than once then the values of joined together and separated by a ',' character.

getEntity

public <T> T getEntity(java.lang.Class<T> type,
                       java.lang.reflect.Type genericType,
                       java.lang.annotation.Annotation[] as)
Description copied from interface: HttpRequestContext
Get the request entity, returns null if the request does not contain an entity body.

Specified by:
getEntity in interface HttpRequestContext
Parameters:
type - the type of entity
genericType - type the generic type of entity, it is the responsibility of the callee to ensure that the type and generic type are consistent otherwise the behaviour of this method is undefined.
as - the annotations associated with the type
Returns:
the request entity or null

setEntity

public <T> void setEntity(java.lang.Class<T> type,
                          java.lang.reflect.Type genericType,
                          java.lang.annotation.Annotation[] annotations,
                          MediaType mediaType,
                          MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders,
                          T entity)
Set the request entity.

Parameters:
type - the class of object that is to be written.
genericType - the type of object to be written, obtained either by reflection of a resource method return type or by inspection of the returned instance. GenericEntity provides a way to specify this information at runtime.
annotations - an array of the annotations on the resource method that returns the object.
mediaType - the media type of the HTTP entity.
httpHeaders - a mutable map of the HTTP response headers.
entity - the entity instance to write.
Throws:
MappableContainerException - encapsulates exceptions thrown while serializing the entity.

getEntity

public <T> T getEntity(java.lang.Class<T> type)
Description copied from interface: HttpRequestContext
Get the request entity, returns null if the request does not contain an entity body.

Specified by:
getEntity in interface HttpRequestContext
Parameters:
type - the type of entity
Returns:
the request entity or null

getAcceptableMediaType

public MediaType getAcceptableMediaType(java.util.List<MediaType> mediaTypes)
Description copied from interface: HttpRequestContext
Select the first media type, from a list of media types, that is most acceptable according to the requested acceptable media types.

Specified by:
getAcceptableMediaType in interface HttpRequestContext
Parameters:
mediaTypes - the list of media types
Returns:
the most acceptable media type, or null if no media type was found to be acceptable.

getAcceptableMediaTypes

public java.util.List<MediaType> getAcceptableMediaTypes(java.util.List<QualitySourceMediaType> priorityMediaTypes)
Description copied from interface: HttpRequestContext
Get a list of media types that are acceptable for the response.

Specified by:
getAcceptableMediaTypes in interface HttpRequestContext
Parameters:
priorityMediaTypes - the list of media types that take priority, ordered according to the quality source parameter, "qs" as the primary key.
Returns:
a list of requested response media types sorted according to highest relative quality value, which is product of the quality parameter, q, of an acceptable media type, and the quality source parameter, qs, of matching media type.

getCookieNameValueMap

public MultivaluedMap<java.lang.String,java.lang.String> getCookieNameValueMap()
Description copied from interface: HttpRequestContext
Get the cookie name value map.

Specified by:
getCookieNameValueMap in interface HttpRequestContext
Returns:
the cookie name value map.

getFormParameters

public Form getFormParameters()
Description copied from interface: HttpRequestContext
Get the form parameters of the request entity.

This method will ensure that the request entity is buffered such that it may be consumed by the application.

Specified by:
getFormParameters in interface HttpRequestContext
Returns:
the form parameters, if there is a request entity and the content type is "application/x-www-form-urlencoded", otherwise an instance containing no parameters will be returned.

getRequestHeaders

public MultivaluedMap<java.lang.String,java.lang.String> getRequestHeaders()
Description copied from interface: HttpHeaders
Get the values of HTTP request headers. The returned Map is case-insensitive wrt keys and is read-only.

Specified by:
getRequestHeaders in interface HttpHeaders
Returns:
a read-only map of header names and values.

getRequestHeader

public java.util.List<java.lang.String> getRequestHeader(java.lang.String name)
Description copied from interface: HttpHeaders
Get the values of a HTTP request header. The returned List is read-only. This is a shortcut for getRequestHeaders().get(name).

Specified by:
getRequestHeader in interface HttpHeaders
Parameters:
name - the header name, case insensitive
Returns:
a read-only list of header values.

getAcceptableMediaTypes

public java.util.List<MediaType> getAcceptableMediaTypes()
Description copied from interface: HttpHeaders
Get a list of media types that are acceptable for the response.

Specified by:
getAcceptableMediaTypes in interface HttpHeaders
Returns:
a read-only list of requested response media types sorted according to their q-value, with highest preference first.

getAcceptableLanguages

public java.util.List<java.util.Locale> getAcceptableLanguages()
Description copied from interface: HttpHeaders
Get a list of languages that are acceptable for the response.

Specified by:
getAcceptableLanguages in interface HttpHeaders
Returns:
a read-only list of acceptable languages sorted according to their q-value, with highest preference first.

getMediaType

public MediaType getMediaType()
Description copied from interface: HttpHeaders
Get the media type of the request entity

Specified by:
getMediaType in interface HttpHeaders
Returns:
the media type or null if there is no request entity.

getLanguage

public java.util.Locale getLanguage()
Description copied from interface: HttpHeaders
Get the language of the request entity

Specified by:
getLanguage in interface HttpHeaders
Returns:
the language of the entity or null if not specified

getCookies

public java.util.Map<java.lang.String,Cookie> getCookies()
Description copied from interface: HttpHeaders
Get any cookies that accompanied the request.

Specified by:
getCookies in interface HttpHeaders
Returns:
a read-only map of cookie name (String) to Cookie.

getMethod

public java.lang.String getMethod()
Description copied from interface: Request
Get the request method, e.g. GET, POST, etc.

Specified by:
getMethod in interface Request
Returns:
the request method
See Also:
HttpMethod

selectVariant

public Variant selectVariant(java.util.List<Variant> variants)
Description copied from interface: Request
Select the representation variant that best matches the request. More explicit variants are chosen ahead of less explicit ones. A vary header is computed from the supplied list and automatically added to the response.

Specified by:
selectVariant in interface Request
Parameters:
variants - a list of Variant that describe all of the available representation variants.
Returns:
the variant that best matches the request.
See Also:
Variant.VariantListBuilder

evaluatePreconditions

public Response.ResponseBuilder evaluatePreconditions()
Description copied from interface: Request
Evaluate request preconditions for a resource that does not currently exist. The primary use of this method is to support the If-Match: * and If-None-Match: * preconditions.

Note that both preconditions If-None-Match: * and If-None-Match: something will always be considered to have been met and it is the applications responsibility to enforce any additional method-specific semantics. E.g. a PUT on a resource that does not exist might succeed whereas a GET on a resource that does not exist would likely result in a 404 response. It would be the responsibility of the application to generate the 404 response.

Specified by:
evaluatePreconditions in interface Request
Returns:
null if the preconditions are met or a ResponseBuilder set with the appropriate status if the preconditions are not met.

evaluatePreconditions

public Response.ResponseBuilder evaluatePreconditions(EntityTag eTag)
Description copied from interface: Request
Evaluate request preconditions based on the passed in value.

Specified by:
evaluatePreconditions in interface Request
Parameters:
eTag - an ETag for the current state of the resource
Returns:
null if the preconditions are met or a ResponseBuilder set with the appropriate status if the preconditions are not met. A returned ResponseBuilder will include an ETag header set with the value of eTag.

evaluatePreconditions

public Response.ResponseBuilder evaluatePreconditions(java.util.Date lastModified)
Description copied from interface: Request
Evaluate request preconditions based on the passed in value.

Specified by:
evaluatePreconditions in interface Request
Parameters:
lastModified - a date that specifies the modification date of the resource
Returns:
null if the preconditions are met or a ResponseBuilder set with the appropriate status if the preconditions are not met.

evaluatePreconditions

public Response.ResponseBuilder evaluatePreconditions(java.util.Date lastModified,
                                                      EntityTag eTag)
Description copied from interface: Request
Evaluate request preconditions based on the passed in value.

Specified by:
evaluatePreconditions in interface Request
Parameters:
lastModified - a date that specifies the modification date of the resource
eTag - an ETag for the current state of the resource
Returns:
null if the preconditions are met or a ResponseBuilder set with the appropriate status if the preconditions are not met. A returned ResponseBuilder will include an ETag header set with the value of eTag.

getUserPrincipal

public java.security.Principal getUserPrincipal()
Description copied from interface: SecurityContext
Returns a java.security.Principal object containing the name of the current authenticated user. If the user has not been authenticated, the method returns null.

Specified by:
getUserPrincipal in interface SecurityContext
Returns:
a java.security.Principal containing the name of the user making this request; null if the user has not been authenticated

isUserInRole

public boolean isUserInRole(java.lang.String role)
Description copied from interface: SecurityContext
Returns a boolean indicating whether the authenticated user is included in the specified logical "role". If the user has not been authenticated, the method returns false.

Specified by:
isUserInRole in interface SecurityContext
Parameters:
role - a String specifying the name of the role
Returns:
a boolean indicating whether the user making the request belongs to a given role; false if the user has not been authenticated

isSecure

public boolean isSecure()
Description copied from interface: SecurityContext
Returns a boolean indicating whether this request was made using a secure channel, such as HTTPS.

Specified by:
isSecure in interface SecurityContext
Returns:
true if the request was made using a secure channel, false otherwise

getAuthenticationScheme

public java.lang.String getAuthenticationScheme()
Description copied from interface: SecurityContext
Returns the string value of the authentication scheme used to protect the resource. If the resource is not authenticated, null is returned. Values are the same as the CGI variable AUTH_TYPE

Specified by:
getAuthenticationScheme in interface SecurityContext
Returns:
one of the static members BASIC_AUTH, FORM_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH (suitable for == comparison) or the container-specific string indicating the authentication scheme, or null if the request was not authenticated.


Copyright © 2011 Oracle Corporation. All Rights Reserved.