Package jakarta.websocket.server
Interface ServerApplicationConfig
public interface ServerApplicationConfig
Applications may provide an implementation of this interface to filter the
discovered WebSocket endpoints that are deployed. Implementations of this
class will be discovered via an ServletContainerInitializer scan.
-
Method Summary
Modifier and TypeMethodDescriptiongetAnnotatedEndpointClasses
(Set<Class<?>> scanned) Enables applications to filter the discovered classes annotated withServerEndpoint
.getEndpointConfigs
(Set<Class<? extends Endpoint>> scanned) Enables applications to filter the discovered implementations ofServerEndpointConfig
.
-
Method Details
-
getEndpointConfigs
Enables applications to filter the discovered implementations ofServerEndpointConfig
.- Parameters:
scanned
- TheEndpoint
implementations found in the application- Returns:
- The set of configurations for the endpoint the application wishes to deploy
-
getAnnotatedEndpointClasses
Enables applications to filter the discovered classes annotated withServerEndpoint
.- Parameters:
scanned
- The POJOs annotated withServerEndpoint
found in the application- Returns:
- The set of POJOs the application wishes to deploy
-