Module org.eclipse.jgit.http.server
Interface ServletBinder
-
public interface ServletBinderBinds a servlet to a URL.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServletBinderthrough(javax.servlet.Filter filter)Set the filter to trigger while processing the path.voidwith(javax.servlet.http.HttpServlet servlet)Set the servlet to execute on this path
-
-
-
Method Detail
-
through
ServletBinder through(javax.servlet.Filter filter)
Set the filter to trigger while processing the path.- Parameters:
filter- the filter to trigger while processing the path.- Returns:
this.
-
with
void with(javax.servlet.http.HttpServlet servlet)
Set the servlet to execute on this path- Parameters:
servlet- the servlet to execute on this path.
-
-