Merge pull request #72 from imsglc/amiller-ims-patch-1

Update IssuerProbe.java
This commit is contained in:
Andy Miller 2023-05-21 10:18:46 +09:00 committed by GitHub
commit 74182bf2fc

View File

@ -42,9 +42,9 @@ public class IssuerProbe extends Probe<JsonNode> {
if (issuer.hasNonNull("otherIdentifier")) {
List<JsonNode> otherIdentifiers = JsonNodeUtil.asNodeList(issuer.get("otherIdentifier"));
for (JsonNode otherIdentifier : otherIdentifiers) {
// check that type contains "IdentityObject"
if (!JsonNodeUtil.asStringList(otherIdentifier.get("type")).contains("IdentityObject")) {
return error("otherIdentifier in issuer is not of type \"IdentityObject\"", ctx);
// check that type contains "IdentifierEntry"
if (!JsonNodeUtil.asStringList(otherIdentifier.get("type")).contains("IdentifierEntry")) {
return error("otherIdentifier in issuer is not of type \"IdentifierEntry\"", ctx);
}
}
}