[java-identity-provider] branch main updated: Needs to call superclass to add default variables into context.
Scott Cantor
cantor.2 at osu.edu
Fri Feb 26 14:45:33 UTC 2021
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=ef6768270eda1e692da4aafe19ef88b520290f25
The following commit(s) were added to refs/heads/main by this push:
new ef6768270 Needs to call superclass to add default variables into context.
ef6768270 is described below
commit ef6768270eda1e692da4aafe19ef88b520290f25
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Feb 26 09:45:29 2021 -0500
Needs to call superclass to add default variables into context.
---
.../java/net/shibboleth/idp/profile/logic/SpringExpressionPredicate.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/idp-profile-api/src/main/java/net/shibboleth/idp/profile/logic/SpringExpressionPredicate.java b/idp-profile-api/src/main/java/net/shibboleth/idp/profile/logic/SpringExpressionPredicate.java
index 16cc459f9..86f10dfef 100644
--- a/idp-profile-api/src/main/java/net/shibboleth/idp/profile/logic/SpringExpressionPredicate.java
+++ b/idp-profile-api/src/main/java/net/shibboleth/idp/profile/logic/SpringExpressionPredicate.java
@@ -47,6 +47,7 @@ public class SpringExpressionPredicate
/** {@inheritDoc} */
@Override
protected void prepareContext(@Nonnull final EvaluationContext context, @Nullable final Object... input) {
+ super.prepareContext(context, input);
context.setVariable("profileContext", input[0]);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list