@Deprecated
public interface AtomRequest
Modifier and Type | Method and Description |
---|---|
int |
getContentLength()
Deprecated.
Returns the length, in bytes, of the request body and made available by the input stream, or
-1 if the length is not known.
|
java.lang.String |
getContentType()
Deprecated.
Returns the MIME type of the body of the request, or null if the type is not known.
|
long |
getDateHeader(java.lang.String arg0)
Deprecated.
Returns the value of the specified request header as a long value that represents a Date
object.
|
java.lang.String |
getHeader(java.lang.String arg0)
Deprecated.
Returns the value of the specified request header as a String.
|
java.util.Enumeration<java.lang.String> |
getHeaderNames()
Deprecated.
Returns an enumeration of all the header names this request contains.
|
java.util.Enumeration<java.lang.String> |
getHeaders(java.lang.String arg0)
Deprecated.
Returns all the values of the specified request header as an Enumeration of String objects.
|
java.io.InputStream |
getInputStream()
Deprecated.
Retrieves the body of the request as binary data using a ServletInputStream.
|
int |
getIntHeader(java.lang.String arg0)
Deprecated.
Returns the value of the specified request header as an int.
|
java.lang.String |
getParameter(java.lang.String arg0)
Deprecated.
Returns the value of a request parameter as a String, or null if the parameter does not
exist.
|
java.util.Map<java.lang.String,java.lang.String[]> |
getParameterMap()
Deprecated.
Returns a java.util.Map of the parameters of this request.
|
java.util.Enumeration<java.lang.String> |
getParameterNames()
Deprecated.
Returns an Enumeration of String objects containing the names of the parameters contained in
this request.
|
java.lang.String[] |
getParameterValues(java.lang.String arg0)
Deprecated.
Returns an array of String objects containing all of the values the given request parameter
has, or null if the parameter does not exist.
|
java.lang.String |
getPathInfo()
Deprecated.
Returns any extra path information associated with the URL the client sent when it made this
request.
|
java.lang.String |
getQueryString()
Deprecated.
Returns the query string that is contained in the request URL after the path.
|
java.lang.String |
getRemoteUser()
Deprecated.
Returns the login of the user making this request, if the user has been authenticated, or
null if the user has not been authenticated.
|
java.lang.String |
getRequestURI()
Deprecated.
Returns the part of this request's URL from the protocol name up to the query string in the
first line of the HTTP request.
|
java.lang.StringBuffer |
getRequestURL()
Deprecated.
Reconstructs the URL the client used to make the request.
|
java.security.Principal |
getUserPrincipal()
Deprecated.
Returns a java.security.Principal object containing the name of the current authenticated
user.
|
boolean |
isUserInRole(java.lang.String arg0)
Deprecated.
Returns a boolean indicating whether the authenticated user is included in the specified
logical "role".
|
java.lang.String getPathInfo()
java.lang.String getQueryString()
java.lang.String getRemoteUser()
boolean isUserInRole(java.lang.String arg0)
java.security.Principal getUserPrincipal()
java.lang.String getRequestURI()
java.lang.StringBuffer getRequestURL()
int getContentLength()
java.lang.String getContentType()
java.lang.String getParameter(java.lang.String arg0)
java.util.Enumeration<java.lang.String> getParameterNames()
java.lang.String[] getParameterValues(java.lang.String arg0)
java.util.Map<java.lang.String,java.lang.String[]> getParameterMap()
java.io.InputStream getInputStream() throws java.io.IOException
java.io.IOException
long getDateHeader(java.lang.String arg0)
java.lang.String getHeader(java.lang.String arg0)
java.util.Enumeration<java.lang.String> getHeaders(java.lang.String arg0)
java.util.Enumeration<java.lang.String> getHeaderNames()
int getIntHeader(java.lang.String arg0)