Guest User

Untitled

a guest
Dec 11th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public RunnerDO login(String user, String pass) throws ValidationException,
  2. RemoteException {
  3. RunnerDO runner = null;
  4.  
  5. AuthorizationGatewayFactory factory = new AuthorizationGatewayFactory();
  6. IAuthorizeGateway rmig = factory.getInstance().getAuthGateway("AuthorizationService","rmi");
  7. runner = rmig.login(user, pass);
  8.  
  9. return runner;
  10. }
Add Comment
Please, Sign In to add comment