コード例 #1
0
 private void fillUserDetails() {
   if (UQSession.exists() && UQSession.get().isAuthenticated()) {
     User user = UQSession.get().getLoggedInUser();
     setUserDetails(user);
   }
 }
コード例 #2
0
 private void fillEnvironment() {
   if (UQSession.exists() && UQSession.get() != null) {
     this.environment = UQSession.get().initializeEnvironment();
   }
 }