Package org.jboss.as.console.client.administration.role

Source Code of org.jboss.as.console.client.administration.role.RoleAssignmentTable

/*
* JBoss, Home of Professional Open Source
* Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the @author tags. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA  02110-1301, USA.
*/
package org.jboss.as.console.client.administration.role;

import static org.jboss.as.console.client.administration.role.model.PrincipalType.GROUP;
import static org.jboss.as.console.client.administration.role.model.PrincipalType.USER;

import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import com.google.gwt.user.cellview.client.CellTable;
import com.google.gwt.user.cellview.client.Column;
import com.google.gwt.user.cellview.client.TextColumn;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.google.gwt.user.client.ui.Widget;
import com.google.gwt.view.client.ListDataProvider;
import com.google.gwt.view.client.SingleSelectionModel;
import org.jboss.as.console.client.Console;
import org.jboss.as.console.client.administration.role.model.Principal;
import org.jboss.as.console.client.administration.role.model.PrincipalType;
import org.jboss.as.console.client.administration.role.model.RoleAssignment;
import org.jboss.as.console.client.administration.role.model.RoleAssignmentKey;
import org.jboss.as.console.client.administration.role.model.RoleAssignments;
import org.jboss.as.console.client.rbac.Role;
import org.jboss.ballroom.client.widgets.tables.DefaultCellTable;
import org.jboss.ballroom.client.widgets.tables.DefaultPager;

/**
* @author Harald Pehl
*/
public class RoleAssignmentTable implements IsWidget {

    private final PrincipalType type;
    private DefaultCellTable<RoleAssignment> table;
    private ListDataProvider<RoleAssignment> dataProvider;
    private SingleSelectionModel<RoleAssignment> selectionModel;

    public RoleAssignmentTable(final PrincipalType type) {this.type = type;}

    public Widget asWidget() {
        VerticalPanel content = new VerticalPanel();
        content.setStyleName("fill-layout-width");

        // table
        RoleAssignmentKey keyProvider = new RoleAssignmentKey();
        table = new DefaultCellTable<RoleAssignment>(5, keyProvider);
        dataProvider = new ListDataProvider<RoleAssignment>(keyProvider);
        dataProvider.addDataDisplay(table);
        selectionModel = new SingleSelectionModel<RoleAssignment>(keyProvider);
        table.setSelectionModel(selectionModel);

        // columns
        Column<RoleAssignment, Principal> principalColumn =
                new Column<RoleAssignment, Principal>(CellFactory.newPrincipalCell()) {
                    @Override
                    public Principal getValue(final RoleAssignment assignment) {
                        return assignment.getPrincipal();
                    }
                };
        Column<RoleAssignment, List<Role>> roleColumn =
                new Column<RoleAssignment, List<Role>>(CellFactory.newRolesCell()) {
                    @Override
                    public List<Role> getValue(final RoleAssignment assignment) {
                        return assignment.getRoles();
                    }
                };
        table.addColumn(principalColumn,
                type == GROUP ? Console.CONSTANTS.common_label_group() : Console.CONSTANTS.common_label_user());
        table.addColumn(roleColumn, Console.CONSTANTS.common_label_roles());
        if (type == GROUP) {
            TextColumn<RoleAssignment> excludeColumn = new TextColumn<RoleAssignment>() {
                @Override
                public String getValue(final RoleAssignment assignment) {
                    StringBuilder excludes = new StringBuilder();
                    if (assignment.getExcludes() != null) {
                        // Collect all excludes of all roles
                        Map<String, Principal> meltingPot = new HashMap<String, Principal>();
                        Collection<List<Principal>> allExcludes = assignment.getExcludes().values();
                        for (List<Principal> perRole : allExcludes) {
                            for (Principal principal : perRole) {
                                meltingPot.put(principal.getName(), principal);
                            }
                        }
                        for (Iterator<Principal> iterator = meltingPot.values().iterator(); iterator.hasNext(); ) {
                            Principal principal = iterator.next();
                            excludes.append(principal.getName());
                            if (iterator.hasNext()) {
                                excludes.append(", ");
                            }
                        }
                    }
                    return excludes.toString();
                }
            };
            table.addColumn(excludeColumn, Console.CONSTANTS.common_label_exclude());
        }
        content.add(table);

        // pager
        DefaultPager pager = new DefaultPager();
        pager.setDisplay(table);
        content.add(pager);

        return content;
    }

    public void setAssignments(final RoleAssignments assignments) {
        if (type == GROUP) {
            dataProvider.setList(assignments.getGroupAssignments());
        } else if (type == USER) {
            dataProvider.setList(assignments.getUserAssignments());
        }
        table.selectDefaultEntity();
    }

    public RoleAssignment getSelectedAssignment() {
        if (selectionModel != null) {
            return selectionModel.getSelectedObject();
        }
        return null;
    }

    CellTable<RoleAssignment> getCellTable() {
        return table;
    }
}
TOP

Related Classes of org.jboss.as.console.client.administration.role.RoleAssignmentTable

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.