final ComboBoxItem includeExcludeItem = new ComboBoxItem("includeExclude", "Type");
includeExcludeItem.setValueMap(new String[]{"Include", "Exclude"});
includeExcludeItem.setValue("Include");
// TODO The rolesItem is not part of the focus chain because it's not
// TODO recognized by org.jboss.ballroom.client.widgets.window.Focus
final RolesFormItem rolesItem = new RolesFormItem("roles", "Roles");
rolesItem.setRequired(true);
form.setFields(principalItem, realmItem, includeExcludeItem, rolesItem);
VerticalPanel layout = new VerticalPanel();
layout.setStyleName("window-content");
layout.add(new RoleAssignmentHelpPanel(title).asWidget());
layout.add(form.asWidget());
rolesItem.update(roles);
DialogueOptions options = new DialogueOptions(
new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
FormValidation validation = form.validate();
if (!validation.hasErrors()) {
// if a realm was specified, include the realm in the principals id.
final String realm = realmItem.getValue();
Principal principal = principalItem.getValue();
if (realm != null && realm.length() != 0) {
principal = new Principal(principal.getId() + "@" + realm, principal.getName(),
principal.getType());
}
RoleAssignment roleAssignment = new RoleAssignment(principal);
roleAssignment.setRealm(realm);
if ("Include".equals(includeExcludeItem.getValue())) {
roleAssignment.addRoles(rolesItem.getValue());
} else if ("Exclude".equals(includeExcludeItem.getValue())) {
roleAssignment.addExcludes(rolesItem.getValue());
}
presenter.addRoleAssignment(roleAssignment);
}
}
},