/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.javaee7.chapter09; import javax.websocket.Endpoint; import javax.websocket.EndpointConfig; import javax.websocket.Session; /** * * @author Juneau */ public class ProgrammaticEndpoint extends Endpoint { @Override public void onOpen(Session arg0, EndpointConfig arg1) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } }