Uses of Interface
jakarta.websocket.server.ServerEndpointConfig
Packages that use ServerEndpointConfig
Package
Description
This package contains all the Jakarta WebSocket APIs used only by server side applications.
Core classes.
Server implementation.
Tyrus SPI.
-
Uses of ServerEndpointConfig in jakarta.websocket.server
Methods in jakarta.websocket.server that return ServerEndpointConfigModifier and TypeMethodDescriptionServerEndpointConfig.Builder.build()Builds the configuration object using the current attributes that have been set on this builder object.Methods in jakarta.websocket.server that return types with arguments of type ServerEndpointConfigModifier and TypeMethodDescriptionServerApplicationConfig.getEndpointConfigs(Set<Class<? extends Endpoint>> endpointClasses) Return a set of ServerEndpointConfig instances that the server container will use to deploy the programmatic endpoints.Methods in jakarta.websocket.server with parameters of type ServerEndpointConfigModifier and TypeMethodDescriptionvoidServerContainer.addEndpoint(ServerEndpointConfig serverConfig) Deploys the given endpoint described by the provided configuration into this ServerContainer.voidServerEndpointConfig.Configurator.modifyHandshake(ServerEndpointConfig sec, HandshakeRequest request, HandshakeResponse response) Called by the container after it has formulated a handshake response resulting from a well-formed handshake request.voidServerContainer.upgradeHttpToWebSocket(Object httpServletRequest, Object httpServletResponse, ServerEndpointConfig sec, Map<String, String> pathParameters) Upgrade the HTTP connection represented by theHttpServletRequestandHttpServletResponseto the WebSocket protocol and establish a WebSocket connection as per the providedServerEndpointConfig. -
Uses of ServerEndpointConfig in org.glassfish.tyrus.core
Subinterfaces of ServerEndpointConfig in org.glassfish.tyrus.coreModifier and TypeInterfaceDescriptioninterfaceConfigurationServerEndpointConfigenhanced to offer tyrus specific attributes like maxSessions.Classes in org.glassfish.tyrus.core that implement ServerEndpointConfigModifier and TypeClassDescriptionclassA public class that holds a wrapped ServerEndpointConfig.Fields in org.glassfish.tyrus.core declared as ServerEndpointConfigModifier and TypeFieldDescriptionprotected final ServerEndpointConfigServerEndpointConfigWrapper.wrappedMethods in org.glassfish.tyrus.core that return ServerEndpointConfigModifier and TypeMethodDescriptionServerEndpointConfigWrapper.getWrapped()Get the wrappedServerEndpointConfig.Methods in org.glassfish.tyrus.core with parameters of type ServerEndpointConfigModifier and TypeMethodDescriptionvoidTyrusServerEndpointConfigurator.modifyHandshake(ServerEndpointConfig sec, HandshakeRequest request, HandshakeResponse response) voidTyrusWebSocketEngine.register(ServerEndpointConfig serverConfig, String contextPath) -
Uses of ServerEndpointConfig in org.glassfish.tyrus.server
Methods in org.glassfish.tyrus.server that return types with arguments of type ServerEndpointConfigModifier and TypeMethodDescriptionTyrusServerConfiguration.getEndpointConfigs(Set<Class<? extends Endpoint>> scanned) Gets all theServerEndpointConfigclasses which should be deployed.Methods in org.glassfish.tyrus.server with parameters of type ServerEndpointConfigModifier and TypeMethodDescriptionvoidTyrusServerContainer.addEndpoint(ServerEndpointConfig serverEndpointConfig) abstract voidTyrusServerContainer.register(ServerEndpointConfig serverEndpointConfig) voidTyrusServerContainer.upgradeHttpToWebSocket(Object httpServletRequest, Object httpServletResponse, ServerEndpointConfig sec, Map<String, String> pathParameters) -
Uses of ServerEndpointConfig in org.glassfish.tyrus.spi
Methods in org.glassfish.tyrus.spi with parameters of type ServerEndpointConfigModifier and TypeMethodDescriptionvoidWebSocketEngine.register(ServerEndpointConfig serverConfig, String contextPath) RegisterServerEndpointConfig.