public class ClientRequest extends OutboundMessageContext implements ClientRequestContext, HttpHeaders, InjectionManagerSupplier, PropertiesResolver
OutboundMessageContext.StreamProvider
runtimeDelegateDecorator
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
Modifier | Constructor and Description |
---|---|
|
ClientRequest(ClientRequest original)
Copy constructor.
|
protected |
ClientRequest(URI requestUri,
ClientConfig clientConfig,
PropertiesDelegate propertiesDelegate)
Create new Jersey client request context.
|
Modifier and Type | Method and Description |
---|---|
void |
abortWith(Response response) |
void |
accept(MediaType... types)
Add new accepted types to the message headers.
|
void |
accept(String... types)
Add new accepted types to the message headers.
|
void |
acceptLanguage(Locale... locales)
Add new accepted languages to the message headers.
|
void |
acceptLanguage(String... locales)
Add new accepted languages to the message headers.
|
void |
cacheControl(CacheControl cacheControl)
Add new cache control entry to the message headers.
|
void |
cancel(boolean mayInterruptIfRunning)
Cancels this
ClientRequest . |
void |
cookie(Cookie cookie)
Add new cookie to the message headers.
|
void |
enableBuffering()
Enable a buffering of serialized entity.
|
void |
encoding(String encoding)
Set message encoding.
|
Response |
getAbortResponse()
Get the request filter chain aborting response if set, or
null otherwise. |
JerseyClient |
getClient() |
Configuration |
getConfiguration()
The related client/server side
Configuration . |
Map<String,Cookie> |
getCookies() |
InjectionManager |
getInjectionManager()
Get injection manager.
|
String |
getMethod() |
Object |
getProperty(String name) |
Collection<String> |
getPropertyNames() |
Iterable<ReaderInterceptor> |
getReaderInterceptors()
Get reader interceptors of this request.
|
List<String> |
getRequestHeader(String name) |
MultivaluedMap<String,String> |
getRequestHeaders() |
URI |
getUri() |
MessageBodyWorkers |
getWorkers()
Get the message body workers associated with the request.
|
Iterable<WriterInterceptor> |
getWriterInterceptors()
Get writer interceptors of this request.
|
boolean |
ignoreUserAgent()
Indicates whether the User-Agent header should be omitted if not directly set to the map of headers.
|
void |
ignoreUserAgent(boolean ignore)
Indicates whether the User-Agent header should be omitted if not directly set to the map of headers.
|
boolean |
isAsynchronous()
Returns true if the request is called asynchronously using
AsyncInvoker |
boolean |
isCancelled()
Returns
true if this ClientRequest was cancelled
before it completed normally. |
void |
language(Locale language)
Set message language.
|
void |
language(String language)
Set message language.
|
void |
removeProperty(String name) |
<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 . |
void |
setMethod(String method) |
void |
setProperty(String name,
Object object) |
void |
setUri(URI uri) |
void |
setWorkers(MessageBodyWorkers workers)
Set the message body workers associated with the request.
|
void |
type(MediaType type)
Set message content type.
|
void |
type(String type)
Set message content type.
|
void |
variant(Variant variant)
Set message content variant (type, language and encoding).
|
void |
writeEntity()
Write (serialize) the entity set in this request into the
entity stream . |
close, commitStream, enableBuffering, getAcceptableLanguages, getAcceptableMediaTypes, getEntity, getEntityAnnotations, getEntityClass, getEntityStream, getEntityType, getHeaders, getHeaderString, getHeaderValueExceptionContext, getLinks, getMediaType, getStringHeaders, hasEntity, isCommitted, replaceHeaders, setEntity, setEntity, setEntity, setEntity, setEntityAnnotations, setEntityStream, setEntityType, setMediaType, setStreamProvider
containsHeaderString, containsHeaderString, exception, getAllowedMethods, getDate, getEntityTag, getLanguage, getLastModified, getLength, getLengthLong, getLink, getLinkBuilder, getLocation, getRequestCookies, getResponseCookies, hasLink, singleHeader, singleHeader
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getAcceptableLanguages, getAcceptableMediaTypes, getDate, getEntity, getEntityAnnotations, getEntityClass, getEntityStream, getEntityType, getHeaders, getHeaderString, getLanguage, getMediaType, getStringHeaders, hasEntity, setEntity, setEntity, setEntityStream
getAcceptableLanguages, getAcceptableMediaTypes, getDate, getHeaderString, getLanguage, getLength, getMediaType
create
protected ClientRequest(URI requestUri, ClientConfig clientConfig, PropertiesDelegate propertiesDelegate)
requestUri
- request Uri.clientConfig
- request configuration.propertiesDelegate
- properties delegate.public ClientRequest(ClientRequest original)
original
- original instance.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)
getProperty
in interface ClientRequestContext
public Collection<String> getPropertyNames()
getPropertyNames
in interface ClientRequestContext
public void setProperty(String name, Object object)
setProperty
in interface ClientRequestContext
public void removeProperty(String name)
removeProperty
in interface ClientRequestContext
public URI getUri()
getUri
in interface ClientRequestContext
public void setUri(URI uri)
setUri
in interface ClientRequestContext
public String getMethod()
getMethod
in interface ClientRequestContext
public void setMethod(String method)
setMethod
in interface ClientRequestContext
public JerseyClient getClient()
getClient
in interface ClientRequestContext
public void abortWith(Response response)
abortWith
in interface ClientRequestContext
public Response getAbortResponse()
null
otherwise.null
otherwise.public Configuration getConfiguration()
OutboundMessageContext
Configuration
. Can be null
.getConfiguration
in interface ClientRequestContext
getConfiguration
in class OutboundMessageContext
Configuration
the configurationpublic List<String> getRequestHeader(String name)
getRequestHeader
in interface HttpHeaders
public MultivaluedMap<String,String> getRequestHeaders()
getRequestHeaders
in interface HttpHeaders
public Map<String,Cookie> getCookies()
getCookies
in interface ClientRequestContext
getCookies
in interface HttpHeaders
public MessageBodyWorkers getWorkers()
public void setWorkers(MessageBodyWorkers workers)
workers
- message body workers.public void accept(MediaType... types)
types
- accepted types to be added.public void accept(String... types)
types
- accepted types to be added.public void acceptLanguage(Locale... locales)
locales
- accepted languages to be added.public void acceptLanguage(String... locales)
locales
- accepted languages to be added.public void cookie(Cookie cookie)
cookie
- cookie to be added.public void cacheControl(CacheControl cacheControl)
cacheControl
- cache control entry to be added.public void encoding(String encoding)
encoding
- message encoding to be set.public void language(String language)
language
- message language to be set.public void language(Locale language)
language
- message language to be set.public void type(MediaType type)
type
- message content type to be set.public void type(String type)
type
- message content type to be set.public void variant(Variant variant)
variant
- message content content variant (type, language and encoding)
to be set.public boolean isAsynchronous()
AsyncInvoker
public void enableBuffering()
CommonProperties.OUTBOUND_CONTENT_LENGTH_BUFFER
.
The buffering functionality is by default disabled and could be enabled by calling this method. In this case
this method must be called before first bytes are written to the entity stream
.public void writeEntity() throws IOException
entity stream
. The method
use writer interceptors
and message body writer
.
This method modifies the state of this request and therefore it can be called only once per request life cycle otherwise
IllegalStateException is thrown.
Note that OutboundMessageContext.setStreamProvider(org.glassfish.jersey.message.internal.OutboundMessageContext.StreamProvider)
and optionally enableBuffering()
must be called before calling this method.IOException
- In the case of IO error.public Iterable<WriterInterceptor> getWriterInterceptors()
public Iterable<ReaderInterceptor> getReaderInterceptors()
public InjectionManager getInjectionManager()
InjectionManagerSupplier
getInjectionManager
in interface InjectionManagerSupplier
public boolean ignoreUserAgent()
true
if the header should be omitted, false
otherwise.public void ignoreUserAgent(boolean ignore)
ignore
- true
if the header should be omitted, false
otherwise.public void cancel(boolean mayInterruptIfRunning)
ClientRequest
. May result in CancellationException
later in this
request processing if this ClientRequest
is backed by a Future
provided to
JerseyInvocation.Builder.setCancellable(Future)
.mayInterruptIfRunning
- may have no effect or true
if the thread executing this task should be interrupted
(if the thread is known to the implementation);
otherwise, in-progress tasks are allowed to completepublic boolean isCancelled()
true
if this ClientRequest
was cancelled
before it completed normally.true
if this ClientRequest
was cancelled
before it completed normallyCopyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.