UpdateRoleInfo.java 1.25 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9
package pwc.taxtech.atms.dto.role;

import java.util.List;

public class UpdateRoleInfo {

    private String roleName;
    private String roleDescription;
    private List<UpdateRolePermissionDto> updateRolePermissionDtoList;
10

eddie.woo's avatar
eddie.woo committed
11 12 13 14 15 16
    /**
     * @return the roleName
     */
    public String getRoleName() {
        return roleName;
    }
17

eddie.woo's avatar
eddie.woo committed
18 19 20 21 22 23
    /**
     * @param roleName the roleName to set
     */
    public void setRoleName(String roleName) {
        this.roleName = roleName;
    }
24

eddie.woo's avatar
eddie.woo committed
25 26 27 28 29 30
    /**
     * @return the roleDescription
     */
    public String getRoleDescription() {
        return roleDescription;
    }
31

eddie.woo's avatar
eddie.woo committed
32 33 34 35 36 37
    /**
     * @param roleDescription the roleDescription to set
     */
    public void setRoleDescription(String roleDescription) {
        this.roleDescription = roleDescription;
    }
38

eddie.woo's avatar
eddie.woo committed
39 40 41 42 43 44
    /**
     * @return the updateRolePermissionDtoList
     */
    public List<UpdateRolePermissionDto> getUpdateRolePermissionDtoList() {
        return updateRolePermissionDtoList;
    }
45

eddie.woo's avatar
eddie.woo committed
46 47 48 49 50 51 52
    /**
     * @param updateRolePermissionDtoList the updateRolePermissionDtoList to set
     */
    public void setUpdateRolePermissionDtoList(List<UpdateRolePermissionDto> updateRolePermissionDtoList) {
        this.updateRolePermissionDtoList = updateRolePermissionDtoList;
    }

53

eddie.woo's avatar
eddie.woo committed
54
}