Class FHIRNotificationServiceEndpointConfig
- java.lang.Object
 - 
- org.linuxforhealth.fhir.server.notification.websocket.FHIRNotificationServiceEndpointConfig
 
 
- 
- All Implemented Interfaces:
 javax.websocket.EndpointConfig,javax.websocket.server.ServerEndpointConfig
public class FHIRNotificationServiceEndpointConfig extends java.lang.Object implements javax.websocket.server.ServerEndpointConfigThis class is registered with the liberty "ServerContainer" (by our servlet context listener) for initializing our websocket endpoint to be used for notifications. 
- 
- 
Constructor Summary
Constructors Constructor Description FHIRNotificationServiceEndpointConfig() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.websocket.server.ServerEndpointConfig.ConfiguratorgetConfigurator()java.util.List<java.lang.Class<? extends javax.websocket.Decoder>>getDecoders()java.util.List<java.lang.Class<? extends javax.websocket.Encoder>>getEncoders()java.lang.Class<?>getEndpointClass()java.util.List<javax.websocket.Extension>getExtensions()java.lang.StringgetPath()java.util.List<java.lang.String>getSubprotocols()java.util.Map<java.lang.String,java.lang.Object>getUserProperties() 
 - 
 
- 
- 
Method Detail
- 
getEncoders
public java.util.List<java.lang.Class<? extends javax.websocket.Encoder>> getEncoders()
- Specified by:
 getEncodersin interfacejavax.websocket.EndpointConfig
 
- 
getDecoders
public java.util.List<java.lang.Class<? extends javax.websocket.Decoder>> getDecoders()
- Specified by:
 getDecodersin interfacejavax.websocket.EndpointConfig
 
- 
getUserProperties
public java.util.Map<java.lang.String,java.lang.Object> getUserProperties()
- Specified by:
 getUserPropertiesin interfacejavax.websocket.EndpointConfig
 
- 
getEndpointClass
public java.lang.Class<?> getEndpointClass()
- Specified by:
 getEndpointClassin interfacejavax.websocket.server.ServerEndpointConfig
 
- 
getPath
public java.lang.String getPath()
- Specified by:
 getPathin interfacejavax.websocket.server.ServerEndpointConfig
 
- 
getSubprotocols
public java.util.List<java.lang.String> getSubprotocols()
- Specified by:
 getSubprotocolsin interfacejavax.websocket.server.ServerEndpointConfig
 
- 
getExtensions
public java.util.List<javax.websocket.Extension> getExtensions()
- Specified by:
 getExtensionsin interfacejavax.websocket.server.ServerEndpointConfig
 
- 
getConfigurator
public javax.websocket.server.ServerEndpointConfig.Configurator getConfigurator()
- Specified by:
 getConfiguratorin interfacejavax.websocket.server.ServerEndpointConfig
 
 - 
 
 -