Uses of Interface
jakarta.servlet.ServletConfig
-
Packages that use ServletConfig Package Description io.undertow.servlet.handlers io.undertow.servlet.spec io.undertow.servlet.websockets 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.jboss.resteasy.jsapi org.jboss.resteasy.plugins.server.servlet -
-
Uses of ServletConfig in io.undertow.servlet.handlers
Classes in io.undertow.servlet.handlers that implement ServletConfig Modifier and Type Class Description classDefaultServletDefault servlet responsible for serving up resources.Methods in io.undertow.servlet.handlers with parameters of type ServletConfig Modifier and Type Method Description voidDefaultServlet. init(ServletConfig config) -
Uses of ServletConfig in io.undertow.servlet.spec
Classes in io.undertow.servlet.spec that implement ServletConfig Modifier and Type Class Description classServletConfigImpl -
Uses of ServletConfig in io.undertow.servlet.websockets
Classes in io.undertow.servlet.websockets that implement ServletConfig Modifier and Type Class Description classWebSocketServletMethods in io.undertow.servlet.websockets with parameters of type ServletConfig Modifier and Type Method Description voidWebSocketServlet. init(ServletConfig config) -
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.Methods in jakarta.servlet.http with parameters of type ServletConfig Modifier and Type Method Description voidHttpServlet. init(ServletConfig config) -
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.jboss.resteasy.jsapi
Classes in org.jboss.resteasy.jsapi that implement ServletConfig Modifier and Type Class Description classJSAPIServletMethods in org.jboss.resteasy.jsapi with parameters of type ServletConfig Modifier and Type Method Description voidJSAPIServlet. init(ServletConfig config) -
Uses of ServletConfig in org.jboss.resteasy.plugins.server.servlet
Classes in org.jboss.resteasy.plugins.server.servlet that implement ServletConfig Modifier and Type Class Description classHttpServlet30DispatcherclassHttpServletDispatcherFields in org.jboss.resteasy.plugins.server.servlet declared as ServletConfig Modifier and Type Field Description protected ServletConfigServletContainerDispatcher. servletConfigMethods in org.jboss.resteasy.plugins.server.servlet with parameters of type ServletConfig Modifier and Type Method Description voidHttpServletDispatcher. init(ServletConfig servletConfig)Constructors in org.jboss.resteasy.plugins.server.servlet with parameters of type ServletConfig Constructor Description ServletBootstrap(ServletConfig config)ServletContainerDispatcher(ServletConfig servletConfig)
-