package pwc.taxtech.atms.dto.role;

import java.util.ArrayList;
import java.util.List;

public class RoleDisplayDto extends RoleDto {

    private String roleID;
    private String roleTypeName;

    private List<String> permissionIDs = new ArrayList<>();

    private List<String> permissionNames = new ArrayList<>();

    /**
     * @return the roleID
     */
    public String getRoleID() {
        return roleID;
    }

    /**
     * @param roleID the roleID to set
     */
    public void setRoleID(String roleID) {
        this.roleID = roleID;
    }

    /**
     * @return the roleTypeName
     */
    public String getRoleTypeName() {
        return roleTypeName;
    }

    /**
     * @param roleTypeName the roleTypeName to set
     */
    public void setRoleTypeName(String roleTypeName) {
        this.roleTypeName = roleTypeName;
    }

    /**
     * @return the permissionIDs
     */
    public List<String> getPermissionIDs() {
        return permissionIDs;
    }

    /**
     * @param permissionIDs the permissionIDs to set
     */
    public void setPermissionIDs(List<String> permissionIDs) {
        this.permissionIDs = permissionIDs;
    }

    /**
     * @return the permissionNames
     */
    public List<String> getPermissionNames() {
        return permissionNames;
    }

    /**
     * @param permissionNames the permissionNames to set
     */
    public void setPermissionNames(List<String> permissionNames) {
        this.permissionNames = permissionNames;
    }
    
    
}