I'm creating new jetty javax.websocket
server dynamically in the following code.
ServerEndpointConfig serverEndpointConfig = ServerEndpointConfig.Builder.create(
WebSocketVpnServerChannel.class, "/" + path + "/vpn/").build();
instance.wsServerContainer.addEndpoint(serverEndpointConfig);
I need to get these instances to validate if no longer in use to destroy them.