* @return the jsf outcome
*/
public String prepareNewUser() {
this._context = UserBackingBean.Context.NEWUSER;
this.user = new UserImpl("");
this.user.setAddress(new AddressImpl());
this.user.setAccountEnabled(true);
this.userRoles = new String[1];
this.userRoles[0] = "user";
return "newuser";
}