Merge pull request #8473 from eclipse/jetty-10.0.x-WebSocketUpgradeHandler-Configuration

add getter for the WebSocketUpgradeHandler configuration
This commit is contained in:
Lachlan 2022-09-19 10:51:33 +10:00 committed by GitHub
commit 6b2db685cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -50,6 +50,11 @@ public class WebSocketUpgradeHandler extends HandlerWrapper
mappings.addMapping(pathSpec, negotiator);
}
public Configuration getConfiguration()
{
return customizer;
}
@Override
public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
{