Class HttpRequestImpl

    • Constructor Detail

      • HttpRequestImpl

        public HttpRequestImpl​(org.jboss.resteasy.spi.HttpRequest delegate)
    • Method Detail

      • getDecodedFormParameters

        public javax.ws.rs.core.MultivaluedMap<String,​String> getDecodedFormParameters()
        Description copied from interface: HttpRequest

        Returns the form parameters (e.g.: media type application/x-www-form-urlencoded) as a MultivaluedMap where the key and its correspondent value maps to the parameter name and value, respectively.

        The values are already decoded using HTML form decoding.

        Specified by:
        getDecodedFormParameters in interface HttpRequest
        Returns:
        the decoded form parameters
      • getMultiPartFormParameters

        public javax.ws.rs.core.MultivaluedMap<String,​FormPartValue> getMultiPartFormParameters()
        Description copied from interface: HttpRequest
        Parses the parts from a multipart form request (e.g.: multipart/form-data media type).
        Specified by:
        getMultiPartFormParameters in interface HttpRequest
        Returns:
        the parts from a multipart form request
      • getHttpHeaders

        public javax.ws.rs.core.HttpHeaders getHttpHeaders()
        Description copied from interface: HttpRequest
        Returns the HTTP headers.
        Specified by:
        getHttpHeaders in interface HttpRequest
        Returns:
        the HTTP headers
      • getUri

        public javax.ws.rs.core.UriInfo getUri()
        Description copied from interface: HttpRequest
        Returns a UriInfo instance for the path being requested.
        Specified by:
        getUri in interface HttpRequest
        Returns:
        the UriInfo for the current path