Skip to content

Commit

Permalink
Merge pull request #6488 from eclipse/jetty-9.4.x-6487-expose-chainen…
Browse files Browse the repository at this point in the history
…d-servletholder

Issue #6487 - expose ServletHolder in ChainEnd
  • Loading branch information
joakime committed Jul 8, 2021
2 parents 8c2116c + 1dd66ad commit 2cf5428
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -1618,6 +1618,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 2cf5428

Please sign in to comment.