Uses of Interface
eneter.messaging.messagingsystems.tcpmessagingsystem.IServerSecurityFactory

Packages that use IServerSecurityFactory
eneter.messaging.messagingsystems.tcpmessagingsystem Communication via TCP. 
eneter.messaging.messagingsystems.websocketmessagingsystem Communication via Websockets. 
 

Uses of IServerSecurityFactory in eneter.messaging.messagingsystems.tcpmessagingsystem
 

Classes in eneter.messaging.messagingsystems.tcpmessagingsystem that implement IServerSecurityFactory
 class NoneSecurityServerFactory
          Creates the server socket which does not use any security.
 class SslServerFactory
          Creates SSL Server Sockets.
 

Methods in eneter.messaging.messagingsystems.tcpmessagingsystem that return IServerSecurityFactory
 IServerSecurityFactory TcpMessagingSystemFactory.getServerSecurity()
          Gets the factory that is used for creation of server sockets.
 

Methods in eneter.messaging.messagingsystems.tcpmessagingsystem with parameters of type IServerSecurityFactory
 TcpMessagingSystemFactory TcpMessagingSystemFactory.setServerSecurity(IServerSecurityFactory serverSecurityFactory)
          Sets the factory that will be used for creation of server sockets.
 

Uses of IServerSecurityFactory in eneter.messaging.messagingsystems.websocketmessagingsystem
 

Methods in eneter.messaging.messagingsystems.websocketmessagingsystem that return IServerSecurityFactory
 IServerSecurityFactory WebSocketMessagingSystemFactory.getServerSecurity()
          Gets the factory that is used for creation of server sockets.
 

Methods in eneter.messaging.messagingsystems.websocketmessagingsystem with parameters of type IServerSecurityFactory
 WebSocketMessagingSystemFactory WebSocketMessagingSystemFactory.setServerSecurity(IServerSecurityFactory serverSecurityFactory)
          Sets the factory that will be used for creation of server sockets.
 

Constructors in eneter.messaging.messagingsystems.websocketmessagingsystem with parameters of type IServerSecurityFactory
WebSocketListener(java.net.URI webSocketUri, IServerSecurityFactory securityFactory)
          Construct websocket service.