Skip to content

Commit

Permalink
Merge pull request #6511 from eclipse/jetty-10.0.x-6487-expose-chaine…
Browse files Browse the repository at this point in the history
…nd-servletholder

Issue #6487 - expose ServletHolder in ChainEnd (Jetty 10)
  • Loading branch information
joakime committed Jul 12, 2021
2 parents a760f71 + fd7a399 commit 110e8bb
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -1611,6 +1611,11 @@ static class ChainEnd implements FilterChain
_servletHolder = holder;
}

public ServletHolder getServletHolder()
{
return _servletHolder;
}

@Override
public void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException
{
Expand Down

0 comments on commit 110e8bb

Please sign in to comment.