HashFunction hf = Hashing.sha1();
HashCode hc = hf.newHasher()
.putString(password)
.hash();
customer.setPassword(hc.toString());
customer.addAccount(account);
customerService.processCustomer(customer, password);
response.sendRedirect(getServletContext().getContextPath() +
String.format("/auth/admin/customer?id=%d", customer.getId()));
} catch (GenerationException ex) {