[java-oidc-common] branch main updated: Fix nonnullAfterInit claim for configurationLookupStrategy
Phil Smart
philip.smart at jisc.ac.uk
Thu Jun 8 14:57:33 UTC 2023
This is an automated email from the git hooks/post-receive script.
philsmart pushed a commit to branch main
in repository java-oidc-common.
View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=67d209577ac2544eb34f28e741836c8b863ef67f
The following commit(s) were added to refs/heads/main by this push:
new 67d2095 Fix nonnullAfterInit claim for configurationLookupStrategy
67d2095 is described below
commit 67d209577ac2544eb34f28e741836c8b863ef67f
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Thu Jun 8 15:57:30 2023 +0100
Fix nonnullAfterInit claim for configurationLookupStrategy
---
.../profile/impl/PopulateJWTSignatureSigningParametersHandler.java | 3 +++
1 file changed, 3 insertions(+)
diff --git a/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/impl/PopulateJWTSignatureSigningParametersHandler.java b/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/impl/PopulateJWTSignatureSigningParametersHandler.java
index 2efc184..41dada6 100644
--- a/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/impl/PopulateJWTSignatureSigningParametersHandler.java
+++ b/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/impl/PopulateJWTSignatureSigningParametersHandler.java
@@ -243,6 +243,9 @@ public class PopulateJWTSignatureSigningParametersHandler extends AbstractMessag
if (resolver == null) {
throw new ComponentInitializationException("SignatureSigningParametersResolver cannot be null");
}
+ if (configurationLookupStrategy == null) {
+ throw new ComponentInitializationException("ConfigurationLookupStrategy cannot be null");
+ }
}
/** {@inheritDoc} */
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list