JSR-356 tweaking use of configureContext

This commit is contained in:
Joakim Erdfelt 2013-07-26 14:10:03 -07:00
parent 6029826aa4
commit e5655fc2cd
1 changed files with 4 additions and 7 deletions

View File

@ -39,7 +39,7 @@ public class WebSocketConfiguration extends AbstractConfiguration
{
private static final Logger LOG = Log.getLogger(WebSocketConfiguration.class);
public void configureContext(ServletContextHandler context, boolean startContainer)
public static ServerContainer configureContext(ServletContextHandler context)
{
WebSocketUpgradeFilter filter = new WebSocketUpgradeFilter();
FilterHolder fholder = new FilterHolder(filter);
@ -59,16 +59,13 @@ public class WebSocketConfiguration extends AbstractConfiguration
// Store a reference to the ServerContainer per javax.websocket spec 1.0 final section 6.4 Programmatic Server Deployment
context.setAttribute(javax.websocket.server.ServerContainer.class.getName(),jettyContainer);
if (startContainer)
{
jettyContainer.start();
}
return jettyContainer;
}
@Override
public void configure(WebAppContext context) throws Exception
{
configureContext(context,false);
WebSocketConfiguration.configureContext(context);
}
@Override