[java-plugin-shibd-saml] branch dev/StateMgmtWIP updated: Add missing component check.

Codeberg noreply at shibboleth.net
Mon May 4 18:34:41 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch dev/StateMgmtWIP
in repository java-plugin-shibd-saml.

View the commit online:
https://codeberg.org/Shibboleth/java-plugin-shibd-saml/commit/a69e0fc439271683a771b8f020ee0a827b79a407

The following commit(s) were added to refs/heads/dev/StateMgmtWIP by this push:
     new a69e0fc  Add missing component check.
a69e0fc is described below

commit a69e0fc439271683a771b8f020ee0a827b79a407
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Mon May 4 14:34:29 2026 -0400

    Add missing component check.
---
 .../sp/saml/saml2/profile/impl/ProcessAssertionsForAuthentication.java  | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/impl/ProcessAssertionsForAuthentication.java b/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/impl/ProcessAssertionsForAuthentication.java
index 987333d..45d8ce8 100644
--- a/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/impl/ProcessAssertionsForAuthentication.java
+++ b/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/impl/ProcessAssertionsForAuthentication.java
@@ -157,6 +157,8 @@ public class ProcessAssertionsForAuthentication extends AbstractApplicationActio
             throw new ComponentInitializationException("Response resolver cannot be null");
         } else if (samlConsumer == null) {
             throw new ComponentInitializationException("BiConsumer cannot be null");
+        } else if (evalRegistry == null) {
+            throw new ComponentInitializationException("PrincipalEvalPredicateFactoryRegistry cannot be null");
         }
     }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list