Uses of Interface
de.aristaflow.adept2.base.servletcontainer.DynamicServlet
-
-
Uses of DynamicServlet in de.aristaflow.adept2.base.servletcontainer
Classes in de.aristaflow.adept2.base.servletcontainer that implement DynamicServlet Modifier and Type Class Description class
Default404Servlet
This servlet simply returnsHttpServletResponse.SC_NOT_FOUND
to any request.class
DynamicServletWrapper
A simple wrapper to provideDynamicServlet
for aHttpServlet
.Methods in de.aristaflow.adept2.base.servletcontainer with parameters of type DynamicServlet Modifier and Type Method Description URL
ServletService. deployWebApp(String hierarchicalContext, DynamicServlet servlet, Map<String,Object> contextAttrs)
Deploys the designated servlet via this service with the designated hierarchical context having the designated servlet context attributes.URL
ServletService. deployWebApp(String hierarchicalContext, Class<?> baseClass, DynamicServlet servlet, Map<String,String> initParams, Map<String,Object> contextAttrs, String urlMapping)
Deprecated.default URL
ServletService. deployWebApp(String hierarchicalContext, Class<?> baseClass, DynamicServlet servlet, Map<String,String> initParams, Map<String,Object> contextAttrs, String urlMapping, boolean asyncSupported)
Deploys the designated servlet via this service with the designated hierarchical context having the designated servlet context attributes. -
Uses of DynamicServlet in de.aristaflow.adept2.base.servletcontainer.demux
Classes in de.aristaflow.adept2.base.servletcontainer.demux that implement DynamicServlet Modifier and Type Class Description class
DemuxServlet
This servlet allows to register sub servlets at runtime, i. e. even after the servlet context has been initialised.Fields in de.aristaflow.adept2.base.servletcontainer.demux declared as DynamicServlet Modifier and Type Field Description protected DynamicServlet
DemuxServlet. default404
The default 404 servlet used in case no other servlet has been found for a specific path/target.protected DynamicServlet
DeferredDynamic. servlet
The servlet thisDeferredDynamic
handles and initialises.Fields in de.aristaflow.adept2.base.servletcontainer.demux with type parameters of type DynamicServlet Modifier and Type Field Description protected org.eclipse.jetty.http.pathmap.PathMappings<DynamicServlet>
DemuxServlet. pathMappings
All path mappings known by this demultiplexing servlet.protected Map<String,Pair<DynamicServlet,String>>
DemuxServlet. servlets
All sub servlets registered at this servlet (or rather the corresponding servlet context).Methods in de.aristaflow.adept2.base.servletcontainer.demux that return types with arguments of type DynamicServlet Modifier and Type Method Description protected Pair<DynamicServlet,String>
DemuxServlet. getServletForTarget(String target)
Gets the servlet for the designated (request) target.Methods in de.aristaflow.adept2.base.servletcontainer.demux with parameters of type DynamicServlet Modifier and Type Method Description protected Collection<String>
DemuxServlet. addServletWithMapping(DynamicServlet servlet, Collection<String> pathSpec)
Adds the designated servlet with the designated path specifications.protected void
DemuxServlet. removeServletWithMapping(DynamicServlet servlet)
Remove all previously added URL mappings for the designated servlet.protected void
DemuxServlet. subServletDeployed(DynamicServlet servlet, String servletContext)
Signals that the designated sub servlet has been deployed now.Constructors in de.aristaflow.adept2.base.servletcontainer.demux with parameters of type DynamicServlet Constructor Description DeferredDynamic(DynamicServlet servlet, DemuxServlet demuxServlet, javax.servlet.ServletContext servletContext, Map<String,String> contextInitParams)
Creates a newDeferredDynamic
for the designated servlet using the designated multiplexing servlet and having the designated (deferred) servlet context and init parameters. -
Uses of DynamicServlet in de.aristaflow.adept2.base.servletcontainer.dynamic
Fields in de.aristaflow.adept2.base.servletcontainer.dynamic with type parameters of type DynamicServlet Modifier and Type Field Description protected ConcurrentMap<Pair<String,String>,Pair<DynamicServlet,javax.servlet.ServletContext>>
EmbeddedServletService. servlets
All servlets deployed via this service.Methods in de.aristaflow.adept2.base.servletcontainer.dynamic with parameters of type DynamicServlet Modifier and Type Method Description URL
EmbeddedServletService. deployWebApp(String hierarchicalContext, DynamicServlet servlet, Map<String,Object> contextAttrs)
URL
EmbeddedServletService. deployWebApp(String hierarchicalContext, Class<?> baseClass, DynamicServlet servlet, Map<String,String> initParams, Map<String,Object> contextAttrs, String urlMapping)
URL
EmbeddedServletService. deployWebApp(String hierarchicalContext, Class<?> baseClass, DynamicServlet servlet, Map<String,String> initParams, Map<String,Object> contextAttrs, String urlMapping, boolean asyncSupported)
-
Uses of DynamicServlet in de.aristaflow.adept2.ui.htmlgui.httpservice
Classes in de.aristaflow.adept2.ui.htmlgui.httpservice that implement DynamicServlet Modifier and Type Class Description class
AristaFlowHTTPService
Servlet implementation for the HTTP service of the HTML context.
-