Uses of Interface
jakarta.servlet.Servlet
-
Packages that use Servlet Package Description io.undertow.servlet io.undertow.servlet.api io.undertow.servlet.core 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 Servlet in io.undertow.servlet
Method parameters in io.undertow.servlet with type arguments of type Servlet Modifier and Type Method Description static ServletInfoServlets. servlet(Class<? extends Servlet> servletClass)Creates a new servlet description with the given class.static ServletInfoServlets. servlet(String name, Class<? extends Servlet> servletClass)Creates a new servlet description with the given name and classstatic ServletInfoServlets. servlet(String name, Class<? extends Servlet> servletClass, InstanceFactory<? extends Servlet> servlet)Creates a new servlet description with the given name and classstatic ServletInfoServlets. servlet(String name, Class<? extends Servlet> servletClass, InstanceFactory<? extends Servlet> servlet)Creates a new servlet description with the given name and classIllegalArgumentExceptionUndertowServletMessages_$bundle. servletMustImplementServlet(String name, Class<? extends Servlet> servletClass)IllegalArgumentExceptionUndertowServletMessages. servletMustImplementServlet(String name, Class<? extends Servlet> servletClass) -
Uses of Servlet in io.undertow.servlet.api
Methods in io.undertow.servlet.api that return types with arguments of type Servlet Modifier and Type Method Description InstanceFactory<? extends Servlet>ServletInfo. getInstanceFactory()Class<? extends Servlet>ServletInfo. getServletClass()Methods in io.undertow.servlet.api with parameters of type Servlet Modifier and Type Method Description voidLifecycleInterceptor. destroy(ServletInfo servletInfo, Servlet servlet, LifecycleInterceptor.LifecycleContext context)voidLifecycleInterceptor. init(ServletInfo servletInfo, Servlet servlet, LifecycleInterceptor.LifecycleContext context)Method parameters in io.undertow.servlet.api with type arguments of type Servlet Modifier and Type Method Description voidServletInfo. setInstanceFactory(InstanceFactory<? extends Servlet> instanceFactory)Constructor parameters in io.undertow.servlet.api with type arguments of type Servlet Constructor Description ServletInfo(String name, Class<? extends Servlet> servletClass)ServletInfo(String name, Class<? extends Servlet> servletClass, InstanceFactory<? extends Servlet> instanceFactory)ServletInfo(String name, Class<? extends Servlet> servletClass, InstanceFactory<? extends Servlet> instanceFactory) -
Uses of Servlet in io.undertow.servlet.core
Methods in io.undertow.servlet.core that return types with arguments of type Servlet Modifier and Type Method Description InstanceHandle<? extends Servlet>ManagedServlet. getServlet() -
Uses of Servlet in io.undertow.servlet.handlers
Classes in io.undertow.servlet.handlers that implement Servlet Modifier and Type Class Description classDefaultServletDefault servlet responsible for serving up resources. -
Uses of Servlet in io.undertow.servlet.spec
Methods in io.undertow.servlet.spec with type parameters of type Servlet Modifier and Type Method Description <T extends Servlet>
TServletContextImpl. createServlet(Class<T> clazz)Methods in io.undertow.servlet.spec with parameters of type Servlet Modifier and Type Method Description ServletRegistration.DynamicServletContextImpl. addServlet(String servletName, Servlet servlet)Method parameters in io.undertow.servlet.spec with type arguments of type Servlet Modifier and Type Method Description ServletRegistration.DynamicServletContextImpl. addServlet(String servletName, Class<? extends Servlet> servletClass) -
Uses of Servlet in io.undertow.servlet.websockets
Classes in io.undertow.servlet.websockets that implement Servlet Modifier and Type Class Description classWebSocketServlet -
Uses of Servlet in jakarta.servlet
Classes in jakarta.servlet that implement Servlet Modifier and Type Class Description classGenericServletDefines a generic, protocol-independent servlet.Methods in jakarta.servlet with type parameters of type Servlet Modifier and Type Method Description <T extends Servlet>
TServletContext. createServlet(Class<T> clazz)Instantiates the given Servlet class.Methods in jakarta.servlet with parameters of type Servlet Modifier and Type Method Description ServletRegistration.DynamicServletContext. addServlet(String servletName, Servlet servlet)Registers the given servlet instance with this ServletContext under the given servletName.Method parameters in jakarta.servlet with type arguments of type Servlet Modifier and Type Method Description ServletRegistration.DynamicServletContext. addServlet(String servletName, Class<? extends Servlet> servletClass)Adds the servlet with the given name and class type to this servlet context. -
Uses of Servlet in jakarta.servlet.http
Classes in jakarta.servlet.http that implement Servlet Modifier and Type Class Description classHttpServletProvides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. -
Uses of Servlet in jakarta.servlet.jsp
Subinterfaces of Servlet in jakarta.servlet.jsp Modifier and Type Interface Description interfaceHttpJspPageThe HttpJspPage interface describes the interaction that a JSP Page Implementation Class must satisfy when using the HTTP protocol.interfaceJspPageThe JspPage interface describes the generic interaction that a JSP Page Implementation class must satisfy; pages that use the HTTP protocol are described by the HttpJspPage interface.Methods in jakarta.servlet.jsp with parameters of type Servlet Modifier and Type Method Description abstract PageContextJspFactory. getPageContext(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int buffer, boolean autoflush)obtains an instance of an implementation dependent jakarta.servlet.jsp.PageContext abstract class for the calling Servlet and currently pending request and response.abstract voidPageContext. initialize(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int bufferSize, boolean autoFlush)The initialize method is called to initialize an uninitialized PageContext so that it may be used by a JSP Implementation class to service an incoming request and response within it's _jspService() method. -
Uses of Servlet in org.jboss.resteasy.jsapi
Classes in org.jboss.resteasy.jsapi that implement Servlet Modifier and Type Class Description classJSAPIServlet -
Uses of Servlet in org.jboss.resteasy.plugins.server.servlet
Classes in org.jboss.resteasy.plugins.server.servlet that implement Servlet Modifier and Type Class Description classHttpServlet30DispatcherclassHttpServletDispatcher
-