public void onClick() {
log.info("addButton submitted");
User user = new User();
user.addRole(new Role(Constants.USER_ROLE));
//TODO: MZA: Is it the best way to create this model here?
setResponsePage(new FromListUserEdit(getPage(), new Model<User>(user)));
}
}.setIconType(GlyphIconType.plus).setLabel(new ResourceModel("button.add"));
}