Uses of Class
jakarta.websocket.server.ServerEndpointConfig.Configurator
-
Packages that use ServerEndpointConfig.Configurator Package Description jakarta.websocket.server This package contains all the Jakarta WebSocket APIs used only by server side applications. -
-
Uses of ServerEndpointConfig.Configurator in jakarta.websocket.server
Fields in jakarta.websocket.server declared as ServerEndpointConfig.Configurator Modifier and Type Field Description private ServerEndpointConfig.Configurator
ServerEndpointConfig.Configurator. containerDefaultConfigurator
private ServerEndpointConfig.Configurator
DefaultServerEndpointConfig. serverEndpointConfigurator
private ServerEndpointConfig.Configurator
ServerEndpointConfig.Builder. serverEndpointConfigurator
Methods in jakarta.websocket.server that return ServerEndpointConfig.Configurator Modifier and Type Method Description (package private) static ServerEndpointConfig.Configurator
ServerEndpointConfig.Configurator. fetchContainerDefaultConfigurator()
ServerEndpointConfig.Configurator
DefaultServerEndpointConfig. getConfigurator()
Return the ServerEndpointConfiguratorServerEndpointConfig.Configurator
ServerEndpointConfig. getConfigurator()
Return theServerEndpointConfig.Configurator
this configuration is using.ServerEndpointConfig.Configurator
ServerEndpointConfig.Configurator. getContainerDefaultConfigurator()
Return the platform default configurator.Methods in jakarta.websocket.server that return types with arguments of type ServerEndpointConfig.Configurator Modifier and Type Method Description java.lang.Class<? extends ServerEndpointConfig.Configurator>
configurator()
The optional custom configurator class that the developer would like to use to further configure new instances of this endpoint.Methods in jakarta.websocket.server with parameters of type ServerEndpointConfig.Configurator Modifier and Type Method Description ServerEndpointConfig.Builder
ServerEndpointConfig.Builder. configurator(ServerEndpointConfig.Configurator serverEndpointConfigurator)
Sets the custom configurator to use on the configuration object built by this builder.Constructors in jakarta.websocket.server with parameters of type ServerEndpointConfig.Configurator Constructor Description DefaultServerEndpointConfig(java.lang.Class<?> endpointClass, java.lang.String path, java.util.List<java.lang.String> subprotocols, java.util.List<Extension> extensions, java.util.List<java.lang.Class<? extends Encoder>> encoders, java.util.List<java.lang.Class<? extends Decoder>> decoders, ServerEndpointConfig.Configurator serverEndpointConfigurator)
-