Uses of Interface
jakarta.servlet.ServletConfig
-
Packages that use ServletConfig Package Description jakarta.servlet The jakarta.servlet package contains a number of classes and interfaces that describe and define the contracts between a servlet class and the runtime environment provided for an instance of such a class by a conforming servlet container.jakarta.servlet.http The jakarta.servlet.http package contains a number of classes and interfaces that describe and define the contracts between a servlet class running under the HTTP protocol and the runtime environment provided for an instance of such a class by a conforming servlet container.jakarta.servlet.jsp org.apache.jasper org.apache.jasper.runtime org.apache.jasper.servlet -
-
Uses of ServletConfig in jakarta.servlet
Classes in jakarta.servlet that implement ServletConfig Modifier and Type Class Description classGenericServletDefines a generic, protocol-independent servlet.Methods in jakarta.servlet that return ServletConfig Modifier and Type Method Description ServletConfigGenericServlet. getServletConfig()Returns this servlet'sServletConfigobject.ServletConfigServlet. getServletConfig()Returns aServletConfigobject, which contains initialization and startup parameters for this servlet.Methods in jakarta.servlet with parameters of type ServletConfig Modifier and Type Method Description voidGenericServlet. init(ServletConfig config)Called by the servlet container to indicate to a servlet that the servlet is being placed into service.voidServlet. 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 jakarta.servlet.http
Classes in jakarta.servlet.http that implement ServletConfig Modifier and Type Class Description classHttpServletProvides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. -
Uses of ServletConfig in jakarta.servlet.jsp
Methods in jakarta.servlet.jsp that return ServletConfig Modifier and Type Method Description abstract ServletConfigPageContext. getServletConfig()The ServletConfig instance. -
Uses of ServletConfig in org.apache.jasper
Constructors in org.apache.jasper with parameters of type ServletConfig Constructor Description EmbeddedServletOptions(ServletConfig config, ServletContext context)Create an EmbeddedServletOptions object using data available from ServletConfig and ServletContext. -
Uses of ServletConfig in org.apache.jasper.runtime
Classes in org.apache.jasper.runtime that implement ServletConfig Modifier and Type Class Description classHttpJspBaseThis is the super class of all JSP-generated servlets.Methods in org.apache.jasper.runtime that return ServletConfig Modifier and Type Method Description ServletConfigJspContextWrapper. getServletConfig()ServletConfigPageContextImpl. getServletConfig()Methods in org.apache.jasper.runtime with parameters of type ServletConfig Modifier and Type Method Description static InstanceManagerInstanceManagerFactory. getInstanceManager(ServletConfig config)protected static java.lang.StringTagHandlerPool. getOption(ServletConfig config, java.lang.String name, java.lang.String defaultV)static TagHandlerPoolTagHandlerPool. getTagHandlerPool(ServletConfig config)voidHttpJspBase. init(ServletConfig config)protected voidTagHandlerPool. init(ServletConfig config) -
Uses of ServletConfig in org.apache.jasper.servlet
Classes in org.apache.jasper.servlet that implement ServletConfig Modifier and Type Class Description classJspServletThe JSP engine (a.k.a Jasper).Methods in org.apache.jasper.servlet with parameters of type ServletConfig Modifier and Type Method Description voidJspServlet. init(ServletConfig config)Constructors in org.apache.jasper.servlet with parameters of type ServletConfig Constructor Description JspServletWrapper(ServletConfig config, Options options, java.lang.String jspUri, JspRuntimeContext rctxt)
-