Skip to content

Commit 9964363

Browse files
committed
Changed _claim_names/sources type to map
1 parent 9e269c3 commit 9964363

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/oidc/msg/oidc/OpenIDSchema.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ public class OpenIDSchema extends ResponseMessage implements CryptoMessage {
7474
// TODO:ADDRESS MESSAGE CLASS ?
7575
paramVerDefs.put("address", ParameterVerification.SINGLE_OPTIONAL_STRING.getValue());
7676
paramVerDefs.put("updated_at", ParameterVerification.SINGLE_OPTIONAL_INT.getValue());
77-
paramVerDefs.put("_claim_names", ParameterVerification.SINGLE_OPTIONAL_STRING.getValue());
78-
paramVerDefs.put("_claim_sources", ParameterVerification.SINGLE_OPTIONAL_STRING.getValue());
77+
paramVerDefs.put("_claim_names", ParameterVerification.SINGLE_OPTIONAL_MAP.getValue());
78+
paramVerDefs.put("_claim_sources", ParameterVerification.SINGLE_OPTIONAL_MAP.getValue());
7979

8080
}
8181

0 commit comments

Comments
 (0)