Class HttpServerRequest

java.lang.Object
org.jboss.resteasy.plugins.server.BaseHttpRequest
org.jboss.resteasy.plugins.server.sun.http.HttpServerRequest
All Implemented Interfaces:
HttpRequest

public class HttpServerRequest extends BaseHttpRequest
Version:
$Revision: 1 $
Author:
Bill Burke
  • Field Details Link icon

  • Constructor Details Link icon

  • Method Details Link icon

    • getMutableHeaders Link icon

      public jakarta.ws.rs.core.MultivaluedMap<String,String> getMutableHeaders()
    • getHttpHeaders Link icon

      public jakarta.ws.rs.core.HttpHeaders getHttpHeaders()
    • getInputStream Link icon

      public InputStream getInputStream()
    • setInputStream Link icon

      public void setInputStream(InputStream stream)
      Description copied from interface: HttpRequest
      If you are using a servlet container, this will *NOT* override the HttpServletRequest.getInputStream(). It will only override it for the resteasy HttpRequest
      Parameters:
      stream - input stream
    • getHttpMethod Link icon

      public String getHttpMethod()
    • setHttpMethod Link icon

      public void setHttpMethod(String method)
    • getAttribute Link icon

      public Object getAttribute(String attribute)
      Description copied from interface: HttpRequest
      Map of contextual data. Similar to HttpServletRequest attributes
      Parameters:
      attribute - attribute name
      Returns:
      attribute
    • setAttribute Link icon

      public void setAttribute(String name, Object value)
    • removeAttribute Link icon

      public void removeAttribute(String name)
    • getAttributeNames Link icon

      public Enumeration<String> getAttributeNames()
    • getAsyncContext Link icon

      public ResteasyAsynchronousContext getAsyncContext()
    • forward Link icon

      public void forward(String path)
    • wasForwarded Link icon

      public boolean wasForwarded()
    • getRemoteHost Link icon

      public String getRemoteHost()
      Description copied from interface: HttpRequest
      Returns the fully qualified name of the client or the last proxy that sent the request. If the engine cannot or chooses not to resolve the hostname (to improve performance), this method returns the dotted-string form of the IP address.
      Returns:
      a String containing the fully qualified name of the client
    • getRemoteAddress Link icon

      public String getRemoteAddress()
      Description copied from interface: HttpRequest
      Returns the Internet Protocol (IP) address of the client or last proxy that sent the request.
      Returns:
      a String containing the IP address of the client that sent the request