public Resolution newAccount() {
   accountService.insertAccount(account);
   account = accountService.getAccount(account.getUsername());
   myList = catalogService.getProductListByCategory(account.getFavouriteCategoryId());
   authenticated = true;
   return new RedirectResolution(CatalogActionBean.class);
 }