Uses of Interface
jakarta.servlet.Servlet
Packages that use Servlet
Package
Description
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.
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.
-
Uses of Servlet in io.undertow.servlet
Method parameters in io.undertow.servlet with type arguments of type ServletModifier and TypeMethodDescriptionstatic ServletInfoCreates a new servlet description with the given class.static ServletInfoCreates 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 classfinal IllegalArgumentExceptionUndertowServletMessages_$bundle.servletMustImplementServlet(String name, Class<? extends Servlet> servletClass) UndertowServletMessages.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 ServletModifier and TypeMethodDescriptionInstanceFactory<? extends Servlet>ServletInfo.getInstanceFactory()ServletInfo.getServletClass()Methods in io.undertow.servlet.api with parameters of type ServletModifier and TypeMethodDescriptionvoidLifecycleInterceptor.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 ServletModifier and TypeMethodDescriptionvoidServletInfo.setInstanceFactory(InstanceFactory<? extends Servlet> instanceFactory) Constructor parameters in io.undertow.servlet.api with type arguments of type ServletModifierConstructorDescriptionServletInfo(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 -
Uses of Servlet in io.undertow.servlet.handlers
Classes in io.undertow.servlet.handlers that implement ServletModifier and TypeClassDescriptionclassDefault 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 ServletModifier and TypeMethodDescription<T extends Servlet>
TServletContextImpl.createServlet(Class<T> clazz) Methods in io.undertow.servlet.spec with parameters of type ServletModifier and TypeMethodDescriptionServletContextImpl.addServlet(String servletName, Servlet servlet) Method parameters in io.undertow.servlet.spec with type arguments of type ServletModifier and TypeMethodDescriptionServletContextImpl.addServlet(String servletName, Class<? extends Servlet> servletClass) -
Uses of Servlet in io.undertow.servlet.websockets
Classes in io.undertow.servlet.websockets that implement Servlet -
Uses of Servlet in jakarta.servlet
Classes in jakarta.servlet that implement ServletModifier and TypeClassDescriptionclassDefines a generic, protocol-independent servlet.Methods in jakarta.servlet with type parameters of type ServletModifier and TypeMethodDescription<T extends Servlet>
TServletContext.createServlet(Class<T> clazz) Instantiates the given Servlet class.Methods in jakarta.servlet with parameters of type ServletModifier and TypeMethodDescriptionServletContext.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 ServletModifier and TypeMethodDescriptionServletContext.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 ServletModifier and TypeClassDescriptionclassProvides 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.jspModifier and TypeInterfaceDescriptioninterfaceThe HttpJspPage interface describes the interaction that a JSP Page Implementation Class must satisfy when using the HTTP protocol.interfaceThe 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 ServletModifier and TypeMethodDescriptionabstract 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 -
Uses of Servlet in org.jboss.resteasy.plugins.server.servlet
Classes in org.jboss.resteasy.plugins.server.servlet that implement Servlet