Package org.restlet

Class Request

Direct Known Subclasses:
HttpRequest, WrapperRequest

public class Request extends Message
Generic request sent by client connectors. It is then received by server connectors and processed by Restlets. 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.
Author:
Jerome Louvel
See Also:
  • Constructor Details

    • 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, String resourceUri)
      Constructor.
      Parameters:
      method - The call's method.
      resourceUri - The resource URI.
    • Request

      public Request(Method method, 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 Details

    • getCurrent

      public static Request getCurrent()
      Returns the request associated to the current thread. This is reusing the Response.getCurrent() method.

      Warning: this method should only be used under duress. You should by default prefer obtaining the current context using methods such as Resource.getRequest().
      Returns:
      The thread's request.
    • 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 Set<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 the getResourceRef() method for details.
      Returns:
      The original reference.
      See Also:
    • getProtocol

      public Protocol getProtocol()
      Returns the protocol used or to be used, if known.
      Returns:
      The protocol used or to be used.
    • getProxyChallengeResponse

      public ChallengeResponse getProxyChallengeResponse()
      Returns the authentication response sent by a client to a proxy. Note that when used with HTTP connectors, this property maps to the "Proxy-Authorization" header.
      Returns:
      The authentication response sent by a client to a proxy.
    • getRanges

      public 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 the getOriginalRef() method instead. Also, note that beside the update of its base property, the resource reference can be modified during the request processing. For example, the TunnelService associated 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 as Context.getClientDispatcher() or Context.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:
    • 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 the getOnResponse() method returns a callback object.
      Returns:
      True if the request is synchronous.
    • isConfidential

      public boolean isConfidential()
      Implemented based on the Protocol.isConfidential() method for the request's protocol returned by getProtocol();
      Specified by:
      isConfidential in class Message
      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:
      isEntityAvailable in class Message
      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 the getOnResponse() method returns null.
      Returns:
      True if the request is synchronous.
    • setAccessControlRequestHeaders

      public void setAccessControlRequestHeaders(Set<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(String hostUri)
      Sets the host reference using a 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:
    • setProtocol

      public void setProtocol(Protocol protocol)
      Sets the protocol used or to be used.
      Parameters:
      protocol - The protocol used or to be used.
    • setProxyChallengeResponse

      public void setProxyChallengeResponse(ChallengeResponse challengeResponse)
      Sets the authentication response sent by a client to a proxy. Note that when used with HTTP connectors, this property maps to the "Proxy-Authorization" header.
      Parameters:
      challengeResponse - The authentication response sent by a client to a proxy.
    • setRanges

      public void setRanges(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(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:
    • 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:
    • setResourceRef

      public void setResourceRef(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:
    • setRootRef

      public void setRootRef(Reference rootRef)
      Sets the application root reference.
      Parameters:
      rootRef - The application root reference.
    • toString

      public String toString()
      Displays a synthesis of the request like an HTTP request line.
      Overrides:
      toString in class Object
      Returns:
      A synthesis of the request like an HTTP request line.