Class sun.server.http.SSIncludeRequest
All Packages Class Hierarchy This Package Previous Next Index
Class sun.server.http.SSIncludeRequest
java.lang.Object
|
+----sun.server.http.SSIncludeRequest
- public class SSIncludeRequest
- extends Object
- implements ServletRequest
This class represents an HTTP request.
-
SSIncludeRequest(HttpServletRequest, Hashtable)
-
-
getAuthType()
- Returns the access authorization type, or null if none.
-
getContentLength()
- Returns the content length for this request, or -1 if not known.
-
getContentType()
- Returns the content type for this request, or null if not known.
-
getInputStream()
- Returns null.
-
getParameter(String)
- Returns the query string parameter specified by name, or null if none.
-
getParameters()
- Returns a hash table of query string parameter values.
-
getProtocol()
- Returns the protocol of the request.
-
getRemoteAddr()
- Returns the IP address of the remote agent, or null if not known.
-
getRemoteHost()
- Returns the host name of the remote agent, or null if not known.
-
getRemoteUser()
- Returns the user name for this request, or null if not known.
-
getServerName()
- Returns the host on which this request was received.
-
getServerPort()
- Returns the port on which this request was received.
SSIncludeRequest
public SSIncludeRequest(HttpServletRequest req,
Hashtable params)
getParameter
public String getParameter(String name)
- Returns the query string parameter specified by name, or null if none.
- Parameters:
- name - the parameter name
getParameters
public Hashtable getParameters()
- Returns a hash table of query string parameter values.
getProtocol
public String getProtocol()
- Returns the protocol of the request.
getContentLength
public int getContentLength()
- Returns the content length for this request, or -1 if not known.
getContentType
public String getContentType()
- Returns the content type for this request, or null if not known.
getRemoteHost
public String getRemoteHost()
- Returns the host name of the remote agent, or null if not known.
getRemoteAddr
public String getRemoteAddr()
- Returns the IP address of the remote agent, or null if not known.
getRemoteUser
public String getRemoteUser()
- Returns the user name for this request, or null if not known.
getAuthType
public String getAuthType()
- Returns the access authorization type, or null if none.
getServerPort
public int getServerPort()
- Returns the port on which this request was received.
getServerName
public String getServerName()
- Returns the host on which this request was received.
getInputStream
public ServletInputStream getInputStream()
- Returns null.
All Packages Class Hierarchy This Package Previous Next Index