Uses of Interface
javax.servlet.ServletConfig

Packages that use ServletConfig
com.arsdigita.acs   
com.arsdigita.acs.bboard   
javax.servlet   
javax.servlet.http   
javax.servlet.jsp   
 

Uses of ServletConfig in com.arsdigita.acs
 

Classes in com.arsdigita.acs that implement ServletConfig
 class ModuleInitializer
           
 class Parameters
          Class to handle ACS parameters, loaded on server startup.
 class RequestProcessor
          Request procesor servlet for ACS -- handles abstract URLs and filters.
 

Uses of ServletConfig in com.arsdigita.acs.bboard
 

Classes in com.arsdigita.acs.bboard that implement ServletConfig
 class DownloadFile
          Serves as a registered procedure for path /bboard/download-file//pretty-name.
 

Uses of ServletConfig in javax.servlet
 

Classes in javax.servlet that implement ServletConfig
 class GenericServlet
          Defines a generic, protocol-independent servlet.
 

Methods in javax.servlet that return ServletConfig
 ServletConfig GenericServlet.getServletConfig()
          Returns this servlet's ServletConfig object.
 ServletConfig Servlet.getServletConfig()
          Returns a ServletConfig object, which contains initialization and startup parameters for this servlet.
 

Methods in javax.servlet with parameters of type ServletConfig
 void GenericServlet.init(ServletConfig config)
          Called by the servlet container to indicate to a servlet that the servlet is being placed into service.
 void Servlet.init(ServletConfig config)
          Called by the servlet container to indicate to a servlet that the servlet is being placed into service.
 

Uses of ServletConfig in javax.servlet.http
 

Classes in javax.servlet.http that implement ServletConfig
 class HttpServlet
          Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site.
 

Uses of ServletConfig in javax.servlet.jsp
 

Methods in javax.servlet.jsp that return ServletConfig
abstract  ServletConfig PageContext.getServletConfig()