All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class sun.servlet.http.HttpServletConfig

java.lang.Object
   |
   +----sun.servlet.http.HttpServletConfig

public class HttpServletConfig
extends Object
implements ServletConfig
This class is used to implement the servlet config.


Constructor Index

 o HttpServletConfig(ServletContext, Properties)
 o HttpServletConfig(ServletContext, String)

Method Index

 o getInitParameter(String)
Gets an initialization parameter of the servlet.
 o getInitParameterNames()
Returns an enumeration of initialization parameters for the servlet.
 o getServletContext()
Returns the context for the servlet.

Constructors

 o HttpServletConfig
 public HttpServletConfig(ServletContext sc,
                          Properties props)
 o HttpServletConfig
 public HttpServletConfig(ServletContext context,
                          String propString)

Methods

 o getServletContext
 public ServletContext getServletContext()
Returns the context for the servlet.

 o getInitParameter
 public String getInitParameter(String name)
Gets an initialization parameter of the servlet.

 o getInitParameterNames
 public Enumeration getInitParameterNames()
Returns an enumeration of initialization parameters for the servlet.


All Packages  Class Hierarchy  This Package  Previous  Next  Index