Uses of Class
jakarta.websocket.DeploymentException
-
Packages that use DeploymentException Package Description jakarta.websocket This package contains all the Jakarta WebSocket APIs common to both the client and server side.jakarta.websocket.server This package contains all the Jakarta WebSocket APIs used only by server side applications. -
-
Uses of DeploymentException in jakarta.websocket
Methods in jakarta.websocket that throw DeploymentException Modifier and Type Method Description Session
WebSocketContainer. connectToServer(Endpoint endpointInstance, ClientEndpointConfig cec, URI path)
Connect the supplied programmatic client endpoint instance to its server with the given configuration.Session
WebSocketContainer. connectToServer(Class<?> annotatedEndpointClass, URI path)
Connect the supplied annotated endpoint to its server.Session
WebSocketContainer. connectToServer(Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, URI path)
Connect the supplied programmatic endpoint to its server with the given configuration.Session
WebSocketContainer. connectToServer(Object annotatedEndpointInstance, URI path)
Connect the supplied annotated endpoint instance to its server. -
Uses of DeploymentException in jakarta.websocket.server
Methods in jakarta.websocket.server that throw DeploymentException Modifier and Type Method Description void
ServerContainer. addEndpoint(ServerEndpointConfig serverConfig)
Deploys the given endpoint described by the provided configuration into this ServerContainer.void
ServerContainer. addEndpoint(Class<?> endpointClass)
Deploys the given annotated endpoint into this ServerContainer.void
ServerContainer. upgradeHttpToWebSocket(Object httpServletRequest, Object httpServletResponse, ServerEndpointConfig sec, Map<String,String> pathParameters)
Upgrade the HTTP connection represented by theHttpServletRequest
andHttpServletResponse
to the WebSocket protocol and establish a WebSocket connection as per the providedServerEndpointConfig
.
-