protected void populateItem(Item<User> item) {
item.add(new Label("login", new PropertyModel<String>(item.getModel(),
"login")));
item.add(new Label("roles", new UserRolesModel(item.getModel())));
final User user = item.getModelObject();
if (user.isLocked()) {
item.add(new LockedFragment("actions", item.getModel()));
} else {
item.add(new ActionsFragment("actions", item.getModel()));
}
}