/* * RHQ Management Platform * Copyright (C) 2005-2010 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as * published by the Free Software Foundation, and/or the GNU Lesser * General Public License, version 2.1, also as published by the Free * Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License and the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU General Public License * and the GNU Lesser General Public License along with this program; * if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.rhq.coregui.client.admin.users; import com.smartgwt.client.data.Criteria; import com.smartgwt.client.widgets.form.DynamicForm; import com.smartgwt.client.widgets.grid.ListGridRecord; import org.rhq.core.domain.authz.Role; import org.rhq.core.domain.criteria.RoleCriteria; import org.rhq.coregui.client.admin.roles.RolesDataSource; import org.rhq.coregui.client.components.selector.AbstractSelector; import org.rhq.coregui.client.util.RPCDataSource; /** * @author Greg Hinkle */ public class SubjectRoleSelector extends AbstractSelector<Role, RoleCriteria> { private static final String ITEM_ICON = "global/Role_16.png"; public SubjectRoleSelector(ListGridRecord[] roleRecords, boolean isReadOnly) { super(isReadOnly); setAssigned(roleRecords); } @Override protected DynamicForm getAvailableFilterForm() { return null; // TODO: Implement this method. } @Override protected int getMaxAvailableRecords() { return 500; } @Override protected RPCDataSource<Role, RoleCriteria> getDataSource() { return new RolesDataSource(); } @Override protected Criteria getLatestCriteria(DynamicForm availableFilterForm) { return null; // TODO: Implement this method. } @Override protected String getItemTitle() { return MSG.common_title_roles(); } @Override protected String getItemIcon() { return ITEM_ICON; } }