Esempio n. 1
0
 @Override
 public UserProfileModel getUserProfile(final String userName) {
   return new UserProfileModel(
       UserRegistry.getFullName(userName),
       UserRegistry.getEmail(userName),
       UserRegistry.getWebsite(userName),
       new Date().toLocaleString(),
       repositoryAppService.getUserRepositories(userName).size(),
       userActions.getLastContribs(userName));
 }