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.

Constructor Index

 o SSIncludeRequest(HttpServletRequest, Hashtable)

Method Index

 o getAuthType()
Returns the access authorization type, or null if none.
 o getContentLength()
Returns the content length for this request, or -1 if not known.
 o getContentType()
Returns the content type for this request, or null if not known.
 o getInputStream()
Returns null.
 o getParameter(String)
Returns the query string parameter specified by name, or null if none.
 o getParameters()
Returns a hash table of query string parameter values.
 o getProtocol()
Returns the protocol of the request.
 o getRemoteAddr()
Returns the IP address of the remote agent, or null if not known.
 o getRemoteHost()
Returns the host name of the remote agent, or null if not known.
 o getRemoteUser()
Returns the user name for this request, or null if not known.
 o getServerName()
Returns the host on which this request was received.
 o getServerPort()
Returns the port on which this request was received.

Constructors

 o SSIncludeRequest
  public SSIncludeRequest(HttpServletRequest req,
                          Hashtable params)

Methods

 o getParameter
  public String getParameter(String name)
Returns the query string parameter specified by name, or null if none.
Parameters:
name - the parameter name
 o getParameters
  public Hashtable getParameters()
Returns a hash table of query string parameter values.
 o getProtocol
  public String getProtocol()
Returns the protocol of the request.
 o getContentLength
  public int getContentLength()
Returns the content length for this request, or -1 if not known.
 o getContentType
  public String getContentType()
Returns the content type for this request, or null if not known.
 o getRemoteHost
  public String getRemoteHost()
Returns the host name of the remote agent, or null if not known.
 o getRemoteAddr
  public String getRemoteAddr()
Returns the IP address of the remote agent, or null if not known.
 o getRemoteUser
  public String getRemoteUser()
Returns the user name for this request, or null if not known.
 o getAuthType
  public String getAuthType()
Returns the access authorization type, or null if none.
 o getServerPort
  public int getServerPort()
Returns the port on which this request was received.
 o getServerName
  public String getServerName()
Returns the host on which this request was received.
 o getInputStream
  public ServletInputStream getInputStream()
Returns null.

All Packages  Class Hierarchy  This Package  Previous  Next  Index