RoleDisplayDto.java 1.47 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
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;
    }
    
    
}