public class ContainerRequest extends InboundMessageContext implements ContainerRequestContext, Request, HttpHeaders, PropertiesDelegate, PropertiesResolver
ApplicationHandler
for each incoming client request.ACCEPT_PATCH, ACCEPT_RANGES, AGE, CONNECTION, CONTENT_RANGE, EXPECT, FORWARDED, FROM, IF_RANGE, LINK, MAX_FORWARDS, MIME_VERSION, ORIGIN, PROXY_AUTHENTICATE, PROXY_AUTHENTICATION_INFO, PROXY_AUTHORIZATION, PROXY_CONNECTION, RANGE, REFERER, SERVER, TE, TRAILER, TRANSFER_ENCODING, UPGRADE, VIA
ACCEPT, ACCEPT_CHARSET, ACCEPT_ENCODING, ACCEPT_LANGUAGE, ALLOW, AUTHORIZATION, CACHE_CONTROL, CONTENT_DISPOSITION, CONTENT_ENCODING, CONTENT_ID, 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_EVENT_ID_HEADER, LAST_MODIFIED, LOCATION, RETRY_AFTER, SET_COOKIE, USER_AGENT, VARY, WWW_AUTHENTICATE
Constructor and Description |
---|
ContainerRequest(URI baseUri,
URI requestUri,
String httpMethod,
SecurityContext securityContext,
PropertiesDelegate propertiesDelegate)
Deprecated.
|
ContainerRequest(URI baseUri,
URI requestUri,
String httpMethod,
SecurityContext securityContext,
PropertiesDelegate propertiesDelegate,
Configuration configuration)
Create new Jersey container request context.
|
Modifier and Type | Method and Description |
---|---|
void |
abortWith(Response response) |
Response.ResponseBuilder |
evaluatePreconditions() |
Response.ResponseBuilder |
evaluatePreconditions(Date lastModified) |
Response.ResponseBuilder |
evaluatePreconditions(Date lastModified,
EntityTag eTag) |
Response.ResponseBuilder |
evaluatePreconditions(EntityTag eTag) |
Response |
getAbortResponse()
Get the request filter chain aborting response if set, or
null otherwise. |
URI |
getAbsolutePath()
Get the absolute path of the request.
|
List<Locale> |
getAcceptableLanguages() |
List<MediaType> |
getAcceptableMediaTypes() |
URI |
getBaseUri()
Get base request URI.
|
Map<String,Cookie> |
getCookies() |
String |
getMethod() |
String |
getPath(boolean decode)
Get the path of the current request relative to the application root (base)
URI as a string.
|
PropertiesDelegate |
getPropertiesDelegate()
Get the underlying properties delegate.
|
Object |
getProperty(String name)
Returns the property with the given name registered in the current request/response
exchange context, or
null if there is no property by that name. |
Collection<String> |
getPropertyNames()
Returns an immutable
collection containing the property
names available within the context of the current request/response exchange context. |
protected Iterable<ReaderInterceptor> |
getReaderInterceptors()
Get all reader interceptors applicable to this request.
|
Request |
getRequest() |
List<String> |
getRequestHeader(String name)
Get the values of a HTTP request header.
|
MultivaluedMap<String,String> |
getRequestHeaders()
Get the values of HTTP request headers.
|
RequestScopedInitializer |
getRequestScopedInitializer()
Get a custom container extensions initializer for the current request.
|
URI |
getRequestUri()
Get request URI.
|
ContainerResponseWriter |
getResponseWriter()
Get the container response writer for the current request.
|
SecurityContext |
getSecurityContext() |
ExtendedUriInfo |
getUriInfo() |
String |
getVaryValue()
Get the value of HTTP Vary response header to be set in the response,
or
null if no value is to be set. |
void |
inResponseProcessing()
Notify this request that the response created from this request is already being
processed.
|
<T> T |
readEntity(Class<T> rawType)
Read entity from a context entity input stream.
|
<T> T |
readEntity(Class<T> rawType,
Annotation[] annotations)
Read entity from a context entity input stream.
|
<T> T |
readEntity(Class<T> rawType,
Type type)
Read entity from a context entity input stream.
|
<T> T |
readEntity(Class<T> rawType,
Type type,
Annotation[] annotations)
Read entity from a context entity input stream.
|
void |
removeProperty(String name)
Removes a property with the given name from the current request/response
exchange context.
|
<T> T |
resolveProperty(String name,
Class<T> type)
Resolve a property value for the specified property
name . |
<T> T |
resolveProperty(String name,
T defaultValue)
Resolve a property value for the specified property
name . |
Variant |
selectVariant(List<Variant> variants) |
void |
setEntityStream(InputStream input)
Set a new entity input stream.
|
void |
setMethod(String method) |
void |
setMethodWithoutException(String method)
Like
setMethod(String) but does not throw IllegalStateException if the method is invoked in other than
pre-matching phase. |
void |
setProperty(String name,
Object object)
Binds an object to a given property name in the current request/response
exchange context.
|
void |
setRequestScopedInitializer(RequestScopedInitializer requestScopedInitializer)
Set a custom container extensions initializer for the current request.
|
void |
setRequestUri(URI requestUri) |
void |
setRequestUri(URI baseUri,
URI requestUri) |
void |
setSecurityContext(SecurityContext context) |
void |
setWriter(ContainerResponseWriter responseWriter)
Set the container response writer for the current request.
|
bufferEntity, close, getAllowedMethods, getConfiguration, getDate, getEntityStream, getEntityTag, getHeaders, getHeaderString, getIfMatch, getIfNoneMatch, getLanguage, getLastModified, getLength, getLink, getLinkBuilder, getLinks, getLocation, getMediaType, getQualifiedAcceptableLanguages, getQualifiedAcceptableMediaTypes, getQualifiedAcceptCharset, getQualifiedAcceptEncoding, getRequestCookies, getResponseCookies, getWorkers, hasEntity, hasLink, header, headers, headers, headers, headers, readEntity, readEntity, readEntity, readEntity, remove, setWorkers
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getDate, getEntityStream, getHeaders, getHeaderString, getLanguage, getLength, getMediaType, hasEntity
getDate, getHeaderString, getLanguage, getLength, getMediaType
create
public ContainerRequest(URI baseUri, URI requestUri, String httpMethod, SecurityContext securityContext, PropertiesDelegate propertiesDelegate, Configuration configuration)
baseUri
- base application URI.requestUri
- request URI.httpMethod
- request HTTP method name.securityContext
- security context of the current request. Must not be null
.
The SecurityContext.getUserPrincipal()
must return
null
if the current request has not been authenticated
by the container.propertiesDelegate
- custom properties delegate
to be used by the context.configuration
- the server Configuration
. If null
, the default behaviour is expected.@Deprecated public ContainerRequest(URI baseUri, URI requestUri, String httpMethod, SecurityContext securityContext, PropertiesDelegate propertiesDelegate)
baseUri
- base application URI.requestUri
- request URI.httpMethod
- request HTTP method name.securityContext
- security context of the current request. Must not be null
.
The SecurityContext.getUserPrincipal()
must return
null
if the current request has not been authenticated
by the container.propertiesDelegate
- custom properties delegate
to be used by the context.ContainerRequest(URI, URI, String, SecurityContext, PropertiesDelegate, Configuration)
public RequestScopedInitializer getRequestScopedInitializer()
null
if not
available.public void setRequestScopedInitializer(RequestScopedInitializer requestScopedInitializer)
requestScopedInitializer
- custom container extensions initializer.public ContainerResponseWriter getResponseWriter()
public void setWriter(ContainerResponseWriter responseWriter)
responseWriter
- container response writer. Must not be null
.public <T> T readEntity(Class<T> rawType)
T
- entity Java object type.rawType
- raw Java entity type.public <T> T readEntity(Class<T> rawType, Annotation[] annotations)
T
- entity Java object type.rawType
- raw Java entity type.annotations
- entity annotations.public <T> T readEntity(Class<T> rawType, Type type)
T
- entity Java object type.rawType
- raw Java entity type.type
- generic Java entity type.public <T> T readEntity(Class<T> rawType, Type type, Annotation[] annotations)
T
- entity Java object type.rawType
- raw Java entity type.type
- generic Java entity type.annotations
- entity annotations.public <T> T resolveProperty(String name, Class<T> type)
PropertiesResolver
name
.
The method returns the value of the property registered in the request-specific
property bag, if available. If no property for the given property name is found
in the request-specific property bag, the method looks at the properties stored
in the global runtime configuration
this request
belongs to. If there is a value defined in the runtime configuration,
it is returned, otherwise the method returns null
if no such property is
registered neither in the runtime nor in the request-specific property bag.
resolveProperty
in interface PropertiesResolver
T
- property Java type.name
- property name.type
- expected property class type.null
if no such property is registered.public <T> T resolveProperty(String name, T defaultValue)
PropertiesResolver
name
.
The method returns the value of the property registered in the request-specific
property bag, if available. If no property for the given property name is found
in the request-specific property bag, the method looks at the properties stored
in the global runtime configuration
this request
belongs to. If there is a value defined in the runtime configuration,
it is returned, otherwise the method returns defaultValue
if no such property is
registered neither in the runtime nor in the request-specific property bag.
resolveProperty
in interface PropertiesResolver
T
- property Java type.name
- property name.defaultValue
- default value to return if the property is not registered.defaultValue
if no such property is registered.public Object getProperty(String name)
PropertiesDelegate
null
if there is no property by that name.
A property allows a JAX-RS filters and interceptors to exchange additional custom information not already provided by this interface.
A list of supported properties can be retrieved using PropertiesDelegate.getPropertyNames()
.
Custom property names should follow the same convention as package names.
getProperty
in interface ContainerRequestContext
getProperty
in interface PropertiesDelegate
name
- a String
specifying the name of the property.Object
containing the value of the property, or
null
if no property exists matching the given name.PropertiesDelegate.getPropertyNames()
public Collection<String> getPropertyNames()
PropertiesDelegate
collection
containing the property
names available within the context of the current request/response exchange context.
Use the PropertiesDelegate.getProperty(java.lang.String)
method with a property name to get the value of
a property.
getPropertyNames
in interface ContainerRequestContext
getPropertyNames
in interface PropertiesDelegate
collection
of property names.PropertiesDelegate.getProperty(java.lang.String)
public void setProperty(String name, Object object)
PropertiesDelegate
A property allows a JAX-RS filters and interceptors to exchange additional custom information not already provided by this interface.
A list of supported properties can be retrieved using PropertiesDelegate.getPropertyNames()
.
Custom property names should follow the same convention as package names.
If a null
value is passed, the effect is the same as calling the
PropertiesDelegate.removeProperty(String)
method.
setProperty
in interface ContainerRequestContext
setProperty
in interface PropertiesDelegate
name
- a String
specifying the name of the property.object
- an Object
representing the property to be bound.public void removeProperty(String name)
PropertiesDelegate
PropertiesDelegate.getProperty(java.lang.String)
to retrieve the property value will return null
.removeProperty
in interface ContainerRequestContext
removeProperty
in interface PropertiesDelegate
name
- a String
specifying the name of the property to be removed.public PropertiesDelegate getPropertiesDelegate()
public ExtendedUriInfo getUriInfo()
getUriInfo
in interface ContainerRequestContext
protected Iterable<ReaderInterceptor> getReaderInterceptors()
getReaderInterceptors
in class InboundMessageContext
public URI getBaseUri()
public URI getRequestUri()
public URI getAbsolutePath()
public void setRequestUri(URI requestUri) throws IllegalStateException
setRequestUri
in interface ContainerRequestContext
IllegalStateException
public void setRequestUri(URI baseUri, URI requestUri) throws IllegalStateException
setRequestUri
in interface ContainerRequestContext
IllegalStateException
public String getPath(boolean decode)
decode
- controls whether sequences of escaped octets are decoded
(true
) or not (false
).public String getMethod()
getMethod
in interface ContainerRequestContext
getMethod
in interface Request
public void setMethod(String method) throws IllegalStateException
setMethod
in interface ContainerRequestContext
IllegalStateException
public void setMethodWithoutException(String method)
setMethod(String)
but does not throw IllegalStateException
if the method is invoked in other than
pre-matching phase.method
- HTTP method.public SecurityContext getSecurityContext()
getSecurityContext
in interface ContainerRequestContext
public void setSecurityContext(SecurityContext context)
setSecurityContext
in interface ContainerRequestContext
public void setEntityStream(InputStream input)
InboundMessageContext
setEntityStream
in interface ContainerRequestContext
setEntityStream
in class InboundMessageContext
input
- new entity input stream.public Request getRequest()
getRequest
in interface ContainerRequestContext
public void abortWith(Response response)
abortWith
in interface ContainerRequestContext
public void inResponseProcessing()
public Response getAbortResponse()
null
otherwise.null
otherwise.public Map<String,Cookie> getCookies()
getCookies
in interface ContainerRequestContext
getCookies
in interface HttpHeaders
public List<MediaType> getAcceptableMediaTypes()
getAcceptableMediaTypes
in interface ContainerRequestContext
getAcceptableMediaTypes
in interface HttpHeaders
public List<Locale> getAcceptableLanguages()
getAcceptableLanguages
in interface ContainerRequestContext
getAcceptableLanguages
in interface HttpHeaders
public Variant selectVariant(List<Variant> variants) throws IllegalArgumentException
selectVariant
in interface Request
IllegalArgumentException
public String getVaryValue()
null
if no value is to be set.null
otherwise.public Response.ResponseBuilder evaluatePreconditions(EntityTag eTag)
evaluatePreconditions
in interface Request
public Response.ResponseBuilder evaluatePreconditions(Date lastModified)
evaluatePreconditions
in interface Request
public Response.ResponseBuilder evaluatePreconditions(Date lastModified, EntityTag eTag)
evaluatePreconditions
in interface Request
public Response.ResponseBuilder evaluatePreconditions()
evaluatePreconditions
in interface Request
public List<String> getRequestHeader(String name)
getRequestHeaders().get(name)
.getRequestHeader
in interface HttpHeaders
name
- the header name, case insensitive.IllegalStateException
- if called outside the scope of a request.public MultivaluedMap<String,String> getRequestHeaders()
null
.getRequestHeaders
in interface HttpHeaders
IllegalStateException
- if called outside the scope of a request.Copyright © 2007-2023, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.