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

Packages that use IClientSecurityFactory
eneter.messaging.messagingsystems.androidusbcablemessagingsystem Communication with Android via the USB cable. 
eneter.messaging.messagingsystems.tcpmessagingsystem Communication via TCP. 
eneter.messaging.messagingsystems.websocketmessagingsystem Communication via Websockets. 
 

Uses of IClientSecurityFactory in eneter.messaging.messagingsystems.androidusbcablemessagingsystem
 

Methods in eneter.messaging.messagingsystems.androidusbcablemessagingsystem that return IClientSecurityFactory
 IClientSecurityFactory AndroidUsbCableMessagingFactory.getClientSecurity()
          Gets the socket factory allowing to set the communication timeouts with the adb service.
 

Uses of IClientSecurityFactory in eneter.messaging.messagingsystems.tcpmessagingsystem
 

Classes in eneter.messaging.messagingsystems.tcpmessagingsystem that implement IClientSecurityFactory
 class NoneSecurityClientFactory
          Creates the client socket which does not use any security.
 class SslClientFactory
          Creates SSL client socket.
 

Methods in eneter.messaging.messagingsystems.tcpmessagingsystem that return IClientSecurityFactory
 IClientSecurityFactory TcpMessagingSystemFactory.getClientSecurity()
          Gets the factory that is used for creation of client sockets.
 

Methods in eneter.messaging.messagingsystems.tcpmessagingsystem with parameters of type IClientSecurityFactory
 TcpMessagingSystemFactory TcpMessagingSystemFactory.setClientSecurity(IClientSecurityFactory clientSecurityFactory)
          Sets the factory that will be used for creation of secured client socket.
 

Uses of IClientSecurityFactory in eneter.messaging.messagingsystems.websocketmessagingsystem
 

Methods in eneter.messaging.messagingsystems.websocketmessagingsystem that return IClientSecurityFactory
 IClientSecurityFactory WebSocketMessagingSystemFactory.getClientSecurity()
          Gets the factory that is used for creation of client sockets.
 

Methods in eneter.messaging.messagingsystems.websocketmessagingsystem with parameters of type IClientSecurityFactory
 WebSocketMessagingSystemFactory WebSocketMessagingSystemFactory.setClientSecurity(IClientSecurityFactory clientSecurityFactory)
          Sets the factory that will be used for creation of secured client socket.
 

Constructors in eneter.messaging.messagingsystems.websocketmessagingsystem with parameters of type IClientSecurityFactory
WebSocketClient(java.net.URI address, IClientSecurityFactory clientSecurityFactory)
          Constructs the websocket client.