Package org.eclipse.jetty.servlet
Interface ServletHolder.WrapFunction
-
- Enclosing class:
- ServletHolder
@Deprecated(since="2021-05-27") public static interface ServletHolder.WrapFunction
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.Experimental Wrapper mechanism for Servlet objects.Beans in
ServletContextHandler
orWebAppContext
that implement this interface will be called to optionally wrap any newly created Servlets (before theirServlet.init(ServletConfig)
method is called)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Servlet
wrapServlet(Servlet servlet)
Deprecated.Optionally wrap the Servlet.
-
-
-
Method Detail
-
wrapServlet
Servlet wrapServlet(Servlet servlet)
Deprecated.Optionally wrap the Servlet.- Parameters:
servlet
- the servlet being passed in.- Returns:
- the servlet (extend from
ServletHolder.Wrapper
if you do wrap the Servlet)
-
-