Package org.restlet.client
Class Request
- java.lang.Object
-
- org.restlet.client.Message
-
- org.restlet.client.Request
-
- Direct Known Subclasses:
WrapperRequest
public class Request extends Message
Generic request sent by client connectors. It is then received by server connectors and processed byRestlets. This request can also be processed by a chain of Restlets, on both client and server sides. Requests are uniform across all types of connectors, protocols and components.
-
-
Constructor Summary
Constructors Constructor Description Request()Constructor.Request(Method method, java.lang.String resourceUri)Constructor.Request(Method method, java.lang.String resourceUri, Representation entity)Constructor.Request(Method method, Reference resourceRef)Constructor.Request(Method method, Reference resourceRef, Representation entity)Constructor.Request(Request request)Copy constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanabort()Ask the connector to attempt to abort the related network connection, for example immediately closing the socket.voidcommit(Response response)Asks the server connector to immediately commit the given response associated to this request, making it ready to be sent back to the client.java.util.Set<java.lang.String>getAccessControlRequestHeaders()Returns the modifiable set of headers the client is willing to send in future request to this resource.MethodgetAccessControlRequestMethod()Returns the method the client is willing to use in future request to this resource.ChallengeResponsegetChallengeResponse()Returns the authentication response sent by a client to an origin server.ClientInfogetClientInfo()Returns the client-specific information.ConditionsgetConditions()Returns the modifiable conditions applying to this request.Series<Cookie>getCookies()Returns the modifiable series of cookies provided by the client.ReferencegetHostRef()Returns the host reference.intgetMaxForwards()Returns the maximum number of intermediaries.MethodgetMethod()Returns the method.UniformgetOnResponse()Returns the callback invoked on response reception.ReferencegetOriginalRef()Returns the original reference as requested by the client.ProtocolgetProtocol()Returns the protocol used or to be used, if known.java.util.List<Range>getRanges()Returns the ranges to return from the target resource's representation.ReferencegetReferrerRef()Returns the referrer reference if available.ReferencegetResourceRef()Returns the reference of the target resource.ReferencegetRootRef()Returns the application root reference.booleanisAsynchronous()Indicates if the request is asynchronous.booleanisConfidential()Implemented based on theProtocol.isConfidential()method for the request's protocol returned bygetProtocol();booleanisEntityAvailable()Indicates if a content is available and can be sent.booleanisExpectingResponse()Indicates if an associated response is expected.booleanisLoggable()Indicates if the call is loggablebooleanisSynchronous()Indicates if the request is synchronous.voidsetAccessControlRequestHeaders(java.util.Set<java.lang.String> accessControlRequestHeaders)Sets the set of headers the client is willing to use in future request to this resource.voidsetAccessControlRequestMethod(Method accessControlRequestMethod)Sets the method the client is willing to use in future request to this resource.voidsetChallengeResponse(ChallengeResponse challengeResponse)Sets the authentication response sent by a client to an origin server.voidsetClientInfo(ClientInfo clientInfo)Sets the client-specific information.voidsetConditions(Conditions conditions)Sets the conditions applying to this request.voidsetCookies(Series<Cookie> cookies)Sets the modifiable series of cookies provided by the client.voidsetHostRef(java.lang.String hostUri)Sets the host reference using an URI string.voidsetHostRef(Reference hostRef)Sets the host reference.voidsetLoggable(boolean loggable)Indicates if the call is loggablevoidsetMaxForwards(int maxForwards)Sets the maximum number of intermediaries.voidsetMethod(Method method)Sets the method called.voidsetOnResponse(Uniform onResponseCallback)Sets the callback invoked on response reception.voidsetOriginalRef(Reference originalRef)Sets the original reference requested by the client.voidsetProtocol(Protocol protocol)Sets the protocol used or to be used.voidsetRanges(java.util.List<Range> ranges)Sets the modifiable list of ranges to return from the target resource's representation.voidsetReferrerRef(java.lang.String referrerUri)Sets the referrer reference if available using an URI string.voidsetReferrerRef(Reference referrerRef)Sets the referrer reference if available.voidsetResourceRef(java.lang.String resourceUri)Sets the target resource reference using an URI string.voidsetResourceRef(Reference resourceRef)Sets the target resource reference.voidsetRootRef(Reference rootRef)Sets the application root reference.java.lang.StringtoString()Displays a synthesis of the request like an HTTP request line.-
Methods inherited from class org.restlet.client.Message
flushBuffers, getAttributes, getCacheDirectives, getDate, getEntity, getHeaders, getOnError, getOnSent, getRecipientsInfo, getWarnings, release, setAttributes, setCacheDirectives, setDate, setEntity, setEntity, setOnError, setOnSent, setRecipientsInfo, setWarnings
-
-
-
-
Constructor Detail
-
Request
public Request()
Constructor.
-
Request
public Request(Method method, Reference resourceRef)
Constructor.- Parameters:
method- The call's method.resourceRef- The resource reference.
-
Request
public Request(Method method, Reference resourceRef, Representation entity)
Constructor.- Parameters:
method- The call's method.resourceRef- The resource reference.entity- The entity.
-
Request
public Request(Method method, java.lang.String resourceUri)
Constructor.- Parameters:
method- The call's method.resourceUri- The resource URI.
-
Request
public Request(Method method, java.lang.String resourceUri, Representation entity)
Constructor.- Parameters:
method- The call's method.resourceUri- The resource URI.entity- The entity.
-
Request
public Request(Request request)
Copy constructor.- Parameters:
request- The request to copy.
-
-
Method Detail
-
abort
public boolean abort()
Ask the connector to attempt to abort the related network connection, for example immediately closing the socket.- Returns:
- True if the request was aborted.
-
commit
public void commit(Response response)
Asks the server connector to immediately commit the given response associated to this request, making it ready to be sent back to the client. Note that all server connectors don't necessarily support this feature.- Parameters:
response- The response to commit.
-
getAccessControlRequestHeaders
public java.util.Set<java.lang.String> getAccessControlRequestHeaders()
Returns the modifiable set of headers the client is willing to send in future request to this resource. Used when issuing a preflight CORS request to let the origin server knows what headers will be sent later.
Note that when used with HTTP connectors, this property maps to the "Access-Control-Allow-Headers" header.- Returns:
- The headers the client is willing to send in future request to this resource. Useful for CORS support.
-
getAccessControlRequestMethod
public Method getAccessControlRequestMethod()
Returns the method the client is willing to use in future request to this resource. Used when issuing a preflight CORS request to let the origin server knows what method will be sent later.
Note that when used with HTTP connectors, this property maps to the "Access-Control-Request-Method" header.- Returns:
- The method the client is willing to send in future request to this resource. Useful for CORS support.
-
getChallengeResponse
public ChallengeResponse getChallengeResponse()
Returns the authentication response sent by a client to an origin server. Note that when used with HTTP connectors, this property maps to the "Authorization" header.- Returns:
- The authentication response sent by a client to an origin server.
-
getClientInfo
public ClientInfo getClientInfo()
Returns the client-specific information. Creates a new instance if no one has been set.- Returns:
- The client-specific information.
-
getConditions
public Conditions getConditions()
Returns the modifiable conditions applying to this request. Creates a new instance if no one has been set.- Returns:
- The conditions applying to this call.
-
getCookies
public Series<Cookie> getCookies()
Returns the modifiable series of cookies provided by the client. Creates a new instance if no one has been set.
Note that when used with HTTP connectors, this property maps to the "Cookie" header.- Returns:
- The cookies provided by the client.
-
getHostRef
public Reference getHostRef()
Returns the host reference. This may be different from the resourceRef's host, for example for URNs and other URIs that don't contain host information.
Note that when used with HTTP connectors, this property maps to the "Host" header.- Returns:
- The host reference.
-
getMaxForwards
public int getMaxForwards()
Returns the maximum number of intermediaries.- Returns:
- The maximum number of intermediaries.
-
getMethod
public Method getMethod()
Returns the method.- Returns:
- The method.
-
getOnResponse
public Uniform getOnResponse()
Returns the callback invoked on response reception. If the value is not null, then the associated request will be executed asynchronously.- Returns:
- The callback invoked on response reception.
-
getOriginalRef
public Reference getOriginalRef()
Returns the original reference as requested by the client. Note that this property is not used during request routing. See thegetResourceRef()method for details.- Returns:
- The original reference.
- See Also:
getResourceRef()
-
getProtocol
public Protocol getProtocol()
Returns the protocol used or to be used, if known.- Returns:
- The protocol used or to be used.
-
getRanges
public java.util.List<Range> getRanges()
Returns the ranges to return from the target resource's representation. Note that when used with HTTP connectors, this property maps to the "Range" header.- Returns:
- The ranges to return.
-
getReferrerRef
public Reference getReferrerRef()
Returns the referrer reference if available. Note that when used with HTTP connectors, this property maps to the "Referer" header.- Returns:
- The referrer reference.
-
getResourceRef
public Reference getResourceRef()
Returns the reference of the target resource. This reference is especially important during routing, dispatching and resource finding. During such processing, its base reference is constantly updated to reflect the reference of the parent Restlet or resource and the remaining part of the URI that must be routed or analyzed. If you need to get the URI reference originally requested by the client, then you should use thegetOriginalRef()method instead. Also, note that beside the update of its base property, the resource reference can be modified during the request processing. For example, theorg.restlet.client.service.TunnelServiceassociated to an application can extract some special extensions or query parameters and replace them by semantically equivalent properties on the request object. Therefore, the resource reference can become different from the original reference. Finally, when sending out requests via a dispatcher such asContext.getClientDispatcher()orContext#getServerDispatcher(), if the reference contains URI template variables, those variables are automatically resolved using the request's attributes.- Returns:
- The reference of the target resource.
- See Also:
getOriginalRef(),getHostRef()
-
getRootRef
public Reference getRootRef()
Returns the application root reference.- Returns:
- The application root reference.
-
isAsynchronous
public boolean isAsynchronous()
Indicates if the request is asynchronous. The test consist in verifying that thegetOnResponse()method returns a callback object.- Returns:
- True if the request is synchronous.
-
isConfidential
public boolean isConfidential()
Implemented based on theProtocol.isConfidential()method for the request's protocol returned bygetProtocol();- Specified by:
isConfidentialin classMessage- Returns:
- True if the message is confidential.
-
isEntityAvailable
public boolean isEntityAvailable()
Indicates if a content is available and can be sent. Several conditions must be met: the method must allow the sending of content, the content must exists and have some available data.- Overrides:
isEntityAvailablein classMessage- Returns:
- True if a content is available and can be sent.
-
isExpectingResponse
public boolean isExpectingResponse()
Indicates if an associated response is expected.- Returns:
- True if an associated response is expected.
-
isLoggable
public boolean isLoggable()
Indicates if the call is loggable- Returns:
- True if the call is loggable
-
isSynchronous
public boolean isSynchronous()
Indicates if the request is synchronous. The test consist in verifying that thegetOnResponse()method returns null.- Returns:
- True if the request is synchronous.
-
setAccessControlRequestHeaders
public void setAccessControlRequestHeaders(java.util.Set<java.lang.String> accessControlRequestHeaders)
Sets the set of headers the client is willing to use in future request to this resource. Used when issuing a preflight CORS request to let the origin server knows what headers will be sent later.
Note that when used with HTTP connectors, this property maps to the "Access-Control-Request-Method" header.- Parameters:
accessControlRequestHeaders- The set of headers the client is willing to send in future request to this resource. Useful for CORS support.
-
setAccessControlRequestMethod
public void setAccessControlRequestMethod(Method accessControlRequestMethod)
Sets the method the client is willing to use in future request to this resource. Used when issuing a preflight CORS request to let the origin server knows what method will be sent later.
Note that when used with HTTP connectors, this property maps to the "Access-Control-Request-Method" header.- Parameters:
accessControlRequestMethod- The method the client is willing to send in future request to this resource. Useful for CORS support.
-
setChallengeResponse
public void setChallengeResponse(ChallengeResponse challengeResponse)
Sets the authentication response sent by a client to an origin server. Note that when used with HTTP connectors, this property maps to the "Authorization" header.- Parameters:
challengeResponse- The authentication response sent by a client to an origin server.
-
setClientInfo
public void setClientInfo(ClientInfo clientInfo)
Sets the client-specific information.- Parameters:
clientInfo- The client-specific information.
-
setConditions
public void setConditions(Conditions conditions)
Sets the conditions applying to this request.- Parameters:
conditions- The conditions applying to this request.
-
setCookies
public void setCookies(Series<Cookie> cookies)
Sets the modifiable series of cookies provided by the client. Note that when used with HTTP connectors, this property maps to the "Cookie" header. This method clears the current series and adds all entries in the parameter series.- Parameters:
cookies- A series of cookies provided by the client.
-
setHostRef
public void setHostRef(Reference hostRef)
Sets the host reference. Note that when used with HTTP connectors, this property maps to the "Host" header.- Parameters:
hostRef- The host reference.
-
setHostRef
public void setHostRef(java.lang.String hostUri)
Sets the host reference using an URI string. Note that when used with HTTP connectors, this property maps to the "Host" header.- Parameters:
hostUri- The host URI.
-
setLoggable
public void setLoggable(boolean loggable)
Indicates if the call is loggable- Parameters:
loggable- True if the call is loggable
-
setMaxForwards
public void setMaxForwards(int maxForwards)
Sets the maximum number of intermediaries.- Parameters:
maxForwards- The maximum number of intermediaries.
-
setMethod
public void setMethod(Method method)
Sets the method called.- Parameters:
method- The method called.
-
setOnResponse
public void setOnResponse(Uniform onResponseCallback)
Sets the callback invoked on response reception. If the value is not null, then the associated request will be executed asynchronously.- Parameters:
onResponseCallback- The callback invoked on response reception.
-
setOriginalRef
public void setOriginalRef(Reference originalRef)
Sets the original reference requested by the client.- Parameters:
originalRef- The original reference.- See Also:
getOriginalRef()
-
setProtocol
public void setProtocol(Protocol protocol)
Sets the protocol used or to be used.- Parameters:
protocol- The protocol used or to be used.
-
setRanges
public void setRanges(java.util.List<Range> ranges)
Sets the modifiable list of ranges to return from the target resource's representation. Note that when used with HTTP connectors, this property maps to the "Range" header. This method clears the current list and adds all entries in the parameter list.- Parameters:
ranges- A list of ranges.
-
setReferrerRef
public void setReferrerRef(Reference referrerRef)
Sets the referrer reference if available. Note that when used with HTTP connectors, this property maps to the "Referer" header.- Parameters:
referrerRef- The referrer reference.
-
setReferrerRef
public void setReferrerRef(java.lang.String referrerUri)
Sets the referrer reference if available using an URI string. Note that when used with HTTP connectors, this property maps to the "Referer" header.- Parameters:
referrerUri- The referrer URI.- See Also:
setReferrerRef(Reference)
-
setResourceRef
public void setResourceRef(Reference resourceRef)
Sets the target resource reference. If the reference is relative, it will be resolved as an absolute reference. Also, the context's base reference will be reset. Finally, the reference will be normalized to ensure a consistent handling of the call.- Parameters:
resourceRef- The resource reference.- See Also:
getResourceRef()
-
setResourceRef
public void setResourceRef(java.lang.String resourceUri)
Sets the target resource reference using an URI string. Note that the URI can be either absolute or relative to the context's base reference.- Parameters:
resourceUri- The resource URI.- See Also:
setResourceRef(Reference)
-
setRootRef
public void setRootRef(Reference rootRef)
Sets the application root reference.- Parameters:
rootRef- The application root reference.
-
toString
public java.lang.String toString()
Displays a synthesis of the request like an HTTP request line.- Overrides:
toStringin classjava.lang.Object- Returns:
- A synthesis of the request like an HTTP request line.
-
-