Uses of Interface
javax.websocket.server.ServerEndpointConfig
-
Packages that use ServerEndpointConfig Package Description javax.websocket.server This package contains all the WebSocket APIs used only by server side applications.org.glassfish.tyrus.core Core classes.org.glassfish.tyrus.server Server implementation.org.glassfish.tyrus.spi Tyrus SPI. -
-
Uses of ServerEndpointConfig in javax.websocket.server
Methods in javax.websocket.server that return ServerEndpointConfig Modifier and Type Method Description ServerEndpointConfig
ServerEndpointConfig.Builder. build()
Builds the configuration object using the current attributes that have been set on this builder object.Methods in javax.websocket.server that return types with arguments of type ServerEndpointConfig Modifier and Type Method Description java.util.Set<ServerEndpointConfig>
ServerApplicationConfig. getEndpointConfigs(java.util.Set<java.lang.Class<? extends Endpoint>> endpointClasses)
Return a set of ServerEndpointConfig instances that the server container will use to deploy the programmatic endpoints.Methods in javax.websocket.server with parameters of type ServerEndpointConfig Modifier and Type Method Description void
ServerContainer. addEndpoint(ServerEndpointConfig serverConfig)
void
ServerEndpointConfig.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. -
Uses of ServerEndpointConfig in org.glassfish.tyrus.core
Subinterfaces of ServerEndpointConfig in org.glassfish.tyrus.core Modifier and Type Interface Description interface
TyrusServerEndpointConfig
ConfigurationServerEndpointConfig
enhanced to offer tyrus specific attributes like maxSessions.Methods in org.glassfish.tyrus.core with parameters of type ServerEndpointConfig Modifier and Type Method Description void
TyrusServerEndpointConfigurator. modifyHandshake(ServerEndpointConfig sec, HandshakeRequest request, HandshakeResponse response)
void
TyrusWebSocketEngine. register(ServerEndpointConfig serverConfig, java.lang.String contextPath)
-
Uses of ServerEndpointConfig in org.glassfish.tyrus.server
Methods in org.glassfish.tyrus.server that return types with arguments of type ServerEndpointConfig Modifier and Type Method Description java.util.Set<ServerEndpointConfig>
TyrusServerConfiguration. getEndpointConfigs(java.util.Set<java.lang.Class<? extends Endpoint>> scanned)
Gets all theServerEndpointConfig
classes which should be deployed.Methods in org.glassfish.tyrus.server with parameters of type ServerEndpointConfig Modifier and Type Method Description void
TyrusServerContainer. addEndpoint(ServerEndpointConfig serverEndpointConfig)
abstract void
TyrusServerContainer. register(ServerEndpointConfig serverEndpointConfig)
-
Uses of ServerEndpointConfig in org.glassfish.tyrus.spi
Methods in org.glassfish.tyrus.spi with parameters of type ServerEndpointConfig Modifier and Type Method Description void
WebSocketEngine. register(ServerEndpointConfig serverConfig, java.lang.String contextPath)
RegisterServerEndpointConfig
.
-