Uses of Class
org.jminor.common.server.ClientInfo

Packages that use ClientInfo
org.jminor.common.server   
org.jminor.common.server.loadtest   
org.jminor.framework.server   
org.jminor.framework.server.monitor   
 

Uses of ClientInfo in org.jminor.common.server
 

Methods in org.jminor.common.server that return ClientInfo
 ClientInfo LoginProxy.doLogin(ClientInfo clientInfo)
          Performs login validation for the user specified by the client info and returns a client info with the same clientID and the user to propatage for further login procedures, which may or may not be the same user
 

Methods in org.jminor.common.server that return types with arguments of type ClientInfo
 Map<ClientInfo,T> AbstractRemoteServer.getConnections()
           
 

Methods in org.jminor.common.server with parameters of type ClientInfo
 T RemoteServer.connect(ClientInfo clientInfo)
          Establishes a connection to this RemoteServer
 T AbstractRemoteServer.connect(ClientInfo clientInfo)
          Establishes a connection to this RemoteServer
 boolean AbstractRemoteServer.containsConnection(ClientInfo client)
           
protected abstract  T AbstractRemoteServer.doConnect(ClientInfo clientInfo)
          Establishes the actual client connection.
 ClientInfo LoginProxy.doLogin(ClientInfo clientInfo)
          Performs login validation for the user specified by the client info and returns a client info with the same clientID and the user to propatage for further login procedures, which may or may not be the same user
 T AbstractRemoteServer.getConnection(ClientInfo client)
           
 

Uses of ClientInfo in org.jminor.common.server.loadtest
 

Methods in org.jminor.common.server.loadtest with parameters of type ClientInfo
static RemoteLoadTest RemoteLoadTests.createInstance(ClientInfo clientInfo, int loadTestPort)
          Instantiates a new RemoteLoadTestAdapter.
protected  RemoteLoadTest RemoteLoadTestServer.doConnect(ClientInfo clientInfo)
          Establishes the actual client connection.
 

Uses of ClientInfo in org.jminor.framework.server
 

Methods in org.jminor.framework.server that return types with arguments of type ClientInfo
 Collection<ClientInfo> EntityConnectionServerAdminImpl.getClients()
          
 Collection<ClientInfo> EntityConnectionServerAdmin.getClients()
           
 Collection<ClientInfo> EntityConnectionServerAdminImpl.getClients(String clientTypeID)
          
 Collection<ClientInfo> EntityConnectionServerAdmin.getClients(String clientTypeID)
           
 Collection<ClientInfo> EntityConnectionServerAdminImpl.getClients(User user)
          
 Collection<ClientInfo> EntityConnectionServerAdmin.getClients(User user)
           
 

Uses of ClientInfo in org.jminor.framework.server.monitor
 

Constructors in org.jminor.framework.server.monitor with parameters of type ClientInfo
ClientInstanceMonitor(ClientInfo client, EntityConnectionServerAdmin server)