コード例 #1
0
ファイル: UserBean.java プロジェクト: georgenorman/tz-commons
  protected User getLoggedInUser() {
    User result = ServiceLocator.locate(UserService.class).getCurrentAuthenticatedUser();

    return result;
  }
コード例 #2
0
ファイル: UserBean.java プロジェクト: georgenorman/tz-commons
  public boolean isLoggedIn() {
    Subject currentSubject = ServiceLocator.locate(UserService.class).getCurrentSubject();

    return currentSubject.isAuthenticated();
  }