Uses of Interface
jakarta.servlet.ServletRegistration
-
Packages that use ServletRegistration 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.org.apache.jasper.servlet -
-
Uses of ServletRegistration in jakarta.servlet
Subinterfaces of ServletRegistration in jakarta.servlet Modifier and Type Interface Description static interfaceServletRegistration.DynamicInterface through which a Servlet registered via one of the addServlet methods on ServletContext may be further configured.Methods in jakarta.servlet that return ServletRegistration Modifier and Type Method Description ServletRegistrationServletContext. getServletRegistration(java.lang.String servletName)Obtain the details of the named servlet.Methods in jakarta.servlet that return types with arguments of type ServletRegistration Modifier and Type Method Description java.util.Map<java.lang.String,? extends ServletRegistration>ServletContext. getServletRegistrations()Obtain a Map of servlet names to servlet registrations for all servlets registered with this context. -
Uses of ServletRegistration in org.apache.jasper.servlet
Methods in org.apache.jasper.servlet that return ServletRegistration Modifier and Type Method Description ServletRegistrationJspCServletContext. getServletRegistration(java.lang.String servletName)Methods in org.apache.jasper.servlet that return types with arguments of type ServletRegistration Modifier and Type Method Description java.util.Map<java.lang.String,? extends ServletRegistration>JspCServletContext. getServletRegistrations()
-