Class ServerEndpointConfigImpl

java.lang.Object
io.undertow.websockets.jsr.ServerEndpointConfigImpl
All Implemented Interfaces:
javax.websocket.EndpointConfig, javax.websocket.server.ServerEndpointConfig

public class ServerEndpointConfigImpl extends Object implements javax.websocket.server.ServerEndpointConfig
Author:
Stuart Douglas
  • Constructor Details

    • ServerEndpointConfigImpl

      public ServerEndpointConfigImpl(Class<?> endpointclass, String path)
  • Method Details

    • getEndpointClass

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

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

      public List<String> getSubprotocols()
      Specified by:
      getSubprotocols in interface javax.websocket.server.ServerEndpointConfig
    • getExtensions

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

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

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

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

      public Map<String,Object> getUserProperties()
      Specified by:
      getUserProperties in interface javax.websocket.EndpointConfig