Class ServerEndpointConfigImpl

  • All Implemented Interfaces:
    jakarta.websocket.EndpointConfig, jakarta.websocket.server.ServerEndpointConfig

    public class ServerEndpointConfigImpl
    extends java.lang.Object
    implements jakarta.websocket.server.ServerEndpointConfig
    Author:
    Stuart Douglas
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface jakarta.websocket.server.ServerEndpointConfig

        jakarta.websocket.server.ServerEndpointConfig.Builder, jakarta.websocket.server.ServerEndpointConfig.Configurator
    • Constructor Summary

      Constructors 
      Constructor Description
      ServerEndpointConfigImpl​(java.lang.Class<?> endpointclass, java.lang.String path)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      jakarta.websocket.server.ServerEndpointConfig.Configurator getConfigurator()  
      java.util.List<java.lang.Class<? extends jakarta.websocket.Decoder>> getDecoders()  
      java.util.List<java.lang.Class<? extends jakarta.websocket.Encoder>> getEncoders()  
      java.lang.Class<?> getEndpointClass()  
      java.util.List<jakarta.websocket.Extension> getExtensions()  
      java.lang.String getPath()  
      java.util.List<java.lang.String> getSubprotocols()  
      java.util.Map<java.lang.String,​java.lang.Object> getUserProperties()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ServerEndpointConfigImpl

        public ServerEndpointConfigImpl​(java.lang.Class<?> endpointclass,
                                        java.lang.String path)
    • Method Detail

      • getEndpointClass

        public java.lang.Class<?> getEndpointClass()
        Specified by:
        getEndpointClass in interface jakarta.websocket.server.ServerEndpointConfig
      • getPath

        public java.lang.String getPath()
        Specified by:
        getPath in interface jakarta.websocket.server.ServerEndpointConfig
      • getSubprotocols

        public java.util.List<java.lang.String> getSubprotocols()
        Specified by:
        getSubprotocols in interface jakarta.websocket.server.ServerEndpointConfig
      • getExtensions

        public java.util.List<jakarta.websocket.Extension> getExtensions()
        Specified by:
        getExtensions in interface jakarta.websocket.server.ServerEndpointConfig
      • getConfigurator

        public jakarta.websocket.server.ServerEndpointConfig.Configurator getConfigurator()
        Specified by:
        getConfigurator in interface jakarta.websocket.server.ServerEndpointConfig
      • getEncoders

        public java.util.List<java.lang.Class<? extends jakarta.websocket.Encoder>> getEncoders()
        Specified by:
        getEncoders in interface jakarta.websocket.EndpointConfig
      • getDecoders

        public java.util.List<java.lang.Class<? extends jakarta.websocket.Decoder>> getDecoders()
        Specified by:
        getDecoders in interface jakarta.websocket.EndpointConfig
      • getUserProperties

        public java.util.Map<java.lang.String,​java.lang.Object> getUserProperties()
        Specified by:
        getUserProperties in interface jakarta.websocket.EndpointConfig