Class AnnotatedClientEndpointConfig
- java.lang.Object
-
- org.eclipse.jetty.websocket.jsr356.client.AnnotatedClientEndpointConfig
-
- All Implemented Interfaces:
javax.websocket.ClientEndpointConfig
,javax.websocket.EndpointConfig
public class AnnotatedClientEndpointConfig extends java.lang.Object implements javax.websocket.ClientEndpointConfig
-
-
Constructor Summary
Constructors Constructor Description AnnotatedClientEndpointConfig(javax.websocket.ClientEndpoint anno)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.websocket.ClientEndpointConfig.Configurator
getConfigurator()
java.util.List<java.lang.Class<? extends javax.websocket.Decoder>>
getDecoders()
java.util.List<java.lang.Class<? extends javax.websocket.Encoder>>
getEncoders()
java.util.List<javax.websocket.Extension>
getExtensions()
java.util.List<java.lang.String>
getPreferredSubprotocols()
java.util.Map<java.lang.String,java.lang.Object>
getUserProperties()
-
-
-
Method Detail
-
getConfigurator
public javax.websocket.ClientEndpointConfig.Configurator getConfigurator()
- Specified by:
getConfigurator
in interfacejavax.websocket.ClientEndpointConfig
-
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
-
getExtensions
public java.util.List<javax.websocket.Extension> getExtensions()
- Specified by:
getExtensions
in interfacejavax.websocket.ClientEndpointConfig
-
getPreferredSubprotocols
public java.util.List<java.lang.String> getPreferredSubprotocols()
- Specified by:
getPreferredSubprotocols
in interfacejavax.websocket.ClientEndpointConfig
-
getUserProperties
public java.util.Map<java.lang.String,java.lang.Object> getUserProperties()
- Specified by:
getUserProperties
in interfacejavax.websocket.EndpointConfig
-
-