check if CouId is null
This commit is contained in:
parent
95335461a2
commit
7b7c6b0842
|
@ -142,7 +142,9 @@ public class AuthorizationServiceImpl implements AuthorizationService {
|
|||
int coPersonId = aaiRegistryService.getCoPersonIdByEmail(email);
|
||||
List<Integer> list = new ArrayList<>();
|
||||
for (JsonElement element : aaiRegistryService.getRolesWithStatus(coPersonId, AaiRegistryService.RoleStatus.ACTIVE)) {
|
||||
list.add(element.getAsJsonObject().get("CouId").getAsInt());
|
||||
if (element.getAsJsonObject().get("CouId") != null) {
|
||||
list.add(element.getAsJsonObject().get("CouId").getAsInt());
|
||||
}
|
||||
}
|
||||
return aaiRegistryService.getCouNames(list).values();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue