}
@POST
public Response updateAccount(@FormParam("firstName") String firstName, @FormParam("lastName") String lastName, @FormParam("emailAddress") String emailAddress) throws Exception {
UpdateAccountAction action = new UpdateAccountAction(firstName, lastName, emailAddress);
account.apply(action);
config.getAccountStore().update(account);
return Response.seeOther(new URI("manage/account")).build();
}