package pwc.taxtech.atms.dto.role; import java.util.List; public class UpdateRoleInfo { private String roleName; private String roleDescription; private List<UpdateRolePermissionDto> updateRolePermissionDtoList; /** * @return the roleName */ public String getRoleName() { return roleName; } /** * @param roleName the roleName to set */ public void setRoleName(String roleName) { this.roleName = roleName; } /** * @return the roleDescription */ public String getRoleDescription() { return roleDescription; } /** * @param roleDescription the roleDescription to set */ public void setRoleDescription(String roleDescription) { this.roleDescription = roleDescription; } /** * @return the updateRolePermissionDtoList */ public List<UpdateRolePermissionDto> getUpdateRolePermissionDtoList() { return updateRolePermissionDtoList; } /** * @param updateRolePermissionDtoList the updateRolePermissionDtoList to set */ public void setUpdateRolePermissionDtoList(List<UpdateRolePermissionDto> updateRolePermissionDtoList) { this.updateRolePermissionDtoList = updateRolePermissionDtoList; } }