Interface OperationRequest


public interface OperationRequest
The request that was sent as part of performing an operation on a RESTful service.
Author:
Andy Wilkinson
See Also:
  • Method Details

    • getContent

      byte[] getContent()
      Returns the content of the request. If the request has no content an empty array is returned.
      Returns:
      the contents, never null
    • getContentAsString

      String getContentAsString()
      Returns the content of the request as a String. If the request has no content an empty string is returned. If the request has a Content-Type header that specifies a charset then that charset will be used when converting the contents to a String.
      Returns:
      the contents as string, never null
    • getHeaders

      org.springframework.http.HttpHeaders getHeaders()
      Returns the headers that were included in the request.
      Returns:
      the headers
    • getMethod

      org.springframework.http.HttpMethod getMethod()
      Returns the HTTP method of the request.
      Returns:
      the HTTP method
    • getParts

      Returns the request's parts, provided that it is a multipart request. If not, then an empty Collection is returned.
      Returns:
      the parts
    • getUri

      URI getUri()
      Returns the request's URI.
      Returns:
      the URI
    • getCookies

      Collection<RequestCookie> getCookies()
      Returns the cookies sent with the request. If no cookies were sent an empty collection is returned.
      Returns:
      the cookies, never null
      Since:
      1.2.0