Skip to content

Commit

Permalink
Merge pull request #144 from aubi/FISH-5742-subject-type-supported-me…
Browse files Browse the repository at this point in the history
…tadata

Fish 5742 subject type supported metadata
  • Loading branch information
aubi authored Nov 15, 2021
2 parents 353b25c + e04e0ca commit 2ce4e47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,6 @@ private List<String> validateProviderMetadata(OpenIdConfiguration configuration)
if (configuration.getProviderMetadata().getResponseTypesSupported().isEmpty()) {
errorMessages.add("response_types_supported metadata is mandatory");
}
if (configuration.getProviderMetadata().getResponseTypesSupported().isEmpty()) {
errorMessages.add("subject_types_supported metadata is mandatory");
}
if (configuration.getProviderMetadata().getIdTokenSigningAlgValuesSupported().isEmpty()) {
errorMessages.add("id_token_signing_alg_values_supported metadata is mandatory");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@
// OPTIONAL. List of the Authentication Context Class References that this OP supports.
//
/**
* Required: List of the Subject Identifier types that this OP supports. Valid types include pairwise and public.
* Required by standard, but not used by Payara for now: List of the Subject Identifier types that this OP supports.
* Valid types include pairwise and public.
*
* To set this using Microprofile Config use {@code payara.security.openid.provider.subjectTypesSupported}
*
Expand Down

0 comments on commit 2ce4e47

Please sign in to comment.