Minor refactoring + polish reactive WebSocket support

Rename classes not specific to Tomcat:
TomcatWebSocketSession -> StandardWebSocketSession
TomcatWebSocketHandlerAdapter -> StandardWebSocketHandlerAdapter

WebSocketSessionSupport is renamed to AbstractWebSocketSession since it
actually is a WebSocketSession and pre-implements a number of methods.

ServerEndpointRegistration is now package private (mainly for use in
upgrade strategies) and renamed to DefaultServerEndpointConfig.
This commit is contained in:
Rossen Stoyanchev
2016-12-19 18:07:22 -05:00
parent 5fd600d2ad
commit 47e141675f
32 changed files with 273 additions and 276 deletions

View File

@@ -48,7 +48,7 @@ import org.springframework.web.socket.handler.BeanCreatingHandlerProvider;
* override methods for customizing the handshake process.
*
* @author Rossen Stoyanchev
* @since 4.0
* @since 5.0
* @see ServerEndpointExporter
*/
public class ServerEndpointRegistration extends ServerEndpointConfig.Configurator