Uses of Class
edu.mayo.bsi.ngsportal.shared.ConnectionResponse

Packages that use ConnectionResponse
edu.mayo.bsi.ngsportal.client   
edu.mayo.bsi.ngsportal.server   
edu.mayo.bsi.ngsportal.shared   
 

Uses of ConnectionResponse in edu.mayo.bsi.ngsportal.client
 

Methods in edu.mayo.bsi.ngsportal.client with parameters of type ConnectionResponse
 void NGSPortalDashboard.didLogin(ConnectionResponse result)
           
 void NGSPortal.didLogin(ConnectionResponse result)
          Handle the servlet's response to a login attempt
 void NGSPortalDashboard.onSuccess(ConnectionResponse response)
          Called after the client has received encryption information from the server
 void NGSPortal.onSuccess(ConnectionResponse response)
          Called after the client has received encryption information from the server
 void DoLoginCallback.onSuccess(ConnectionResponse result)
           
 

Uses of ConnectionResponse in edu.mayo.bsi.ngsportal.server
 

Methods in edu.mayo.bsi.ngsportal.server that return ConnectionResponse
 ConnectionResponse NGSPortalServiceImpl.getConnection()
          Give the client the information it needs in order to send data to the server
 ConnectionResponse NGSPortalServiceImpl.logIn(String lanID, String password, int connectID)
          Tell the server the lanID and Password (encrypted) of the person doing the querying, and get told by the server if the lan ID and password are valid
 ConnectionResponse PortalConnection.makeConnectionResponse(int key, String[] userRuns)
          Create a ConnectionResponse that describes the contents of this PortalConnection
 

Uses of ConnectionResponse in edu.mayo.bsi.ngsportal.shared
 

Methods in edu.mayo.bsi.ngsportal.shared that return ConnectionResponse
 ConnectionResponse NGSPortalService.getConnection()
          Ask the server for the information the client needs in order to send data to the server
 ConnectionResponse NGSPortalService.logIn(String userName, String password, int connectionID)
          Tell the server the lanID and Password (encrypted) of the person doing the querying, and get told by the server if the lan ID and password are valid
 

Method parameters in edu.mayo.bsi.ngsportal.shared with type arguments of type ConnectionResponse
 void NGSPortalServiceAsync.getConnection(com.google.gwt.user.client.rpc.AsyncCallback<ConnectionResponse> callback)
           
 void NGSPortalServiceAsync.logIn(String userName, String password, int connectID, com.google.gwt.user.client.rpc.AsyncCallback<ConnectionResponse> callback)