예제 #1
0
 public synchronized void _logout() {
   //		lazyProcess();
   assertLoginDelegateExists();
   loginDelegate.logout();
 }
예제 #2
0
 public synchronized LoginState _getLoginState() {
   //		lazyProcess();
   assertLoginDelegateExists();
   return loginDelegate.getLoginState();
 }
예제 #3
0
 public synchronized void _login() throws LoginException {
   //		lazyProcess();
   assertLoginDelegateExists();
   loginDelegate.login();
 }