package org.openiam.webadmin.role; /* * Copyright 2009, OpenIAM LLC * This file is part of the OpenIAM Identity and Access Management Suite * * OpenIAM Identity and Access Management Suite is free software: * you can redistribute it and/or modify * it under the terms of the Lesser GNU General Public License * version 3 as published by the Free Software Foundation. * * OpenIAM 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 * Lesser GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenIAM. If not, see <http://www.gnu.org/licenses/>. * */ import java.io.Serializable; import java.util.List; import org.openiam.idm.srvc.menu.dto.Menu; import org.openiam.idm.srvc.meta.dto.MetadataType; import org.openiam.idm.srvc.res.dto.Resource; import org.openiam.idm.srvc.role.dto.Role; import org.openiam.idm.srvc.secdomain.dto.SecurityDomain; /** * Command object for the RoleDetailController * @author suneet * */ public class RoleResourceCommand implements Serializable { /** * */ private static final long serialVersionUID = -7380232102573091869L; private List<Resource> resourceList ; private String roleId; private String domainId; public List<Resource> getResourceList() { return resourceList; } public void setResourceList(List<Resource> resourceList) { this.resourceList = resourceList; } public String getRoleId() { return roleId; } public void setRoleId(String roleId) { this.roleId = roleId; } public String getDomainId() { return domainId; } public void setDomainId(String domainId) { this.domainId = domainId; } }