RolePermissionDto.java 1.13 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
package pwc.taxtech.atms.dto.role;

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

import pwc.taxtech.atms.dto.permission.PermissionDto;

public class RolePermissionDto {

    
    private String roleID;
    private String roleName;

    private List<PermissionDto> permissionList = 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 roleName
     */
    public String getRoleName() {
        return roleName;
    }

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

    /**
     * @return the permissionList
     */
    public List<PermissionDto> getPermissionList() {
        return permissionList;
    }

    /**
     * @param permissionList the permissionList to set
     */
    public void setPermissionList(List<PermissionDto> permissionList) {
        this.permissionList = permissionList;
    }
    
    
}