Class BasicEndpointConfig
- java.lang.Object
-
- org.eclipse.jetty.websocket.jsr356.BasicEndpointConfig
-
- All Implemented Interfaces:
javax.websocket.EndpointConfig
public class BasicEndpointConfig extends java.lang.Object implements javax.websocket.EndpointConfig
Basic EndpointConfig (used when no EndpointConfig is provided or discovered)
-
-
Constructor Summary
Constructors Constructor Description BasicEndpointConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.Class<? extends javax.websocket.Decoder>>
getDecoders()
java.util.List<java.lang.Class<? extends javax.websocket.Encoder>>
getEncoders()
java.util.Map<java.lang.String,java.lang.Object>
getUserProperties()
-
-
-
Method Detail
-
getDecoders
public java.util.List<java.lang.Class<? extends javax.websocket.Decoder>> getDecoders()
- Specified by:
getDecoders
in interfacejavax.websocket.EndpointConfig
-
getEncoders
public java.util.List<java.lang.Class<? extends javax.websocket.Encoder>> getEncoders()
- Specified by:
getEncoders
in interfacejavax.websocket.EndpointConfig
-
getUserProperties
public java.util.Map<java.lang.String,java.lang.Object> getUserProperties()
- Specified by:
getUserProperties
in interfacejavax.websocket.EndpointConfig
-
-