Package jakarta.servlet
Interface Registration.Dynamic
- All Superinterfaces:
- Registration
- All Known Subinterfaces:
- FilterRegistration.Dynamic,- ServletRegistration.Dynamic
- Enclosing interface:
- Registration
Interface through which a Servlet or Filter registered via one of the addServlet or addFilter methods,
 respectively, on ServletContext may be further configured.
- 
Nested Class SummaryNested classes/interfaces inherited from interface jakarta.servlet.RegistrationRegistration.Dynamic
- 
Method SummaryModifier and TypeMethodDescriptionvoidsetAsyncSupported(boolean isAsyncSupported) Mark this Servlet/Filter as supported asynchronous processing.Methods inherited from interface jakarta.servlet.RegistrationgetClassName, getInitParameter, getInitParameters, getName, setInitParameter, setInitParameters
- 
Method Details- 
setAsyncSupportedvoid setAsyncSupported(boolean isAsyncSupported) Mark this Servlet/Filter as supported asynchronous processing.- Parameters:
- isAsyncSupported- Should this Servlet/Filter support asynchronous processing
- Throws:
- IllegalStateException- if the ServletContext associated with this registration has already been initialised
 
 
-