JSR-356 fixing javadoc describing class

This commit is contained in:
Joakim Erdfelt 2013-07-15 14:26:14 -07:00
parent 179a78e502
commit 2f01bdcdec
1 changed files with 2 additions and 1 deletions

View File

@ -22,11 +22,12 @@ import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.websocket.ContainerProvider;
import javax.websocket.DeploymentException;
import javax.websocket.Endpoint;
import javax.websocket.server.ServerContainer;
import javax.websocket.server.ServerEndpointConfig;
/**
* Example of adding a server socket (annotated) programmatically via config
* Example of adding a server socket (which extends {@link Endpoint}) programmatically via the {@link ServerContainer#addEndpoint(ServerEndpointConfig)}
*/
public class BasicEchoSocketConfigContextListener implements ServletContextListener
{