Class EndpointInstance
- java.lang.Object
-
- org.eclipse.jetty.websocket.jsr356.endpoints.EndpointInstance
-
public class EndpointInstance extends java.lang.Object
Associate a JSR Endpoint with its optionalEndpointConfig
-
-
Field Summary
Fields Modifier and Type Field Description private javax.websocket.EndpointConfig
config
The instance specific configuration for the Endpointprivate java.lang.Object
endpoint
The instance of the Endpointprivate EndpointMetadata
metadata
The metadata for this endpoint
-
Constructor Summary
Constructors Constructor Description EndpointInstance(java.lang.Object endpoint, javax.websocket.EndpointConfig config, EndpointMetadata metadata)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.websocket.EndpointConfig
getConfig()
java.lang.Object
getEndpoint()
EndpointMetadata
getMetadata()
-
-
-
Field Detail
-
endpoint
private final java.lang.Object endpoint
The instance of the Endpoint
-
config
private final javax.websocket.EndpointConfig config
The instance specific configuration for the Endpoint
-
metadata
private final EndpointMetadata metadata
The metadata for this endpoint
-
-
Constructor Detail
-
EndpointInstance
public EndpointInstance(java.lang.Object endpoint, javax.websocket.EndpointConfig config, EndpointMetadata metadata)
-
-
Method Detail
-
getConfig
public javax.websocket.EndpointConfig getConfig()
-
getEndpoint
public java.lang.Object getEndpoint()
-
getMetadata
public EndpointMetadata getMetadata()
-
-