check if CouId is null
This commit is contained in:
parent
415bb1e197
commit
125b64ec3b
|
@ -176,7 +176,9 @@ public class AuthorizationServiceImpl implements AuthorizationService {
|
||||||
int coPersonId = aaiRegistryService.getCoPersonIdByEmail(email);
|
int coPersonId = aaiRegistryService.getCoPersonIdByEmail(email);
|
||||||
List<Integer> list = new ArrayList<>();
|
List<Integer> list = new ArrayList<>();
|
||||||
for (JsonElement element : aaiRegistryService.getRolesWithStatus(coPersonId, AaiRegistryService.RoleStatus.ACTIVE)) {
|
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();
|
return aaiRegistryService.getCouNames(list).values();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue