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.
-
HttpServletConfig(ServletContext, Properties)
-
-
HttpServletConfig(ServletContext, String)
-
-
getInitParameter(String)
- Gets an initialization parameter of the servlet.
-
getInitParameterNames()
- Returns an enumeration of initialization parameters for the servlet.
-
getServletContext()
- Returns the context for the servlet.
HttpServletConfig
public HttpServletConfig(ServletContext sc,
Properties props)
HttpServletConfig
public HttpServletConfig(ServletContext context,
String propString)
getServletContext
public ServletContext getServletContext()
- Returns the context for the servlet.
getInitParameter
public String getInitParameter(String name)
- Gets an initialization parameter of the servlet.
getInitParameterNames
public Enumeration getInitParameterNames()
- Returns an enumeration of initialization parameters for the servlet.
All Packages Class Hierarchy This Package Previous Next Index