Exemplo n.º 1
0
 public void logout() throws LoginException {
   context.logout();
 }
Exemplo n.º 2
0
 public OracleUser(LoginContext context) throws LoginException {
   this.context = context;
   context.logout();
   context.login();
   this.subject = context.getSubject();
 }