[java-identity-provider] branch main updated: Fix deprecated class names.
Scott Cantor
cantor.2 at osu.edu
Mon May 8 12:48:16 UTC 2023
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=2bb1ce4fded44460db20de5f5803ea9e146a8574
The following commit(s) were added to refs/heads/main by this push:
new 2bb1ce4fd Fix deprecated class names.
2bb1ce4fd is described below
commit 2bb1ce4fded44460db20de5f5803ea9e146a8574
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon May 8 08:48:12 2023 -0400
Fix deprecated class names.
---
.../main/resources/net/shibboleth/idp/conf/conditions.xml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/conditions.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/conditions.xml
index 73e223b56..0fee5ab5a 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/conditions.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/conditions.xml
@@ -37,9 +37,9 @@
class="net.shibboleth.profile.context.logic.RelyingPartyIdPredicate" abstract="true" />
<bean id="shibboleth.Conditions.Scripted"
- class="net.shibboleth.idp.profile.logic.ScriptedPredicate" abstract="true" />
+ class="net.shibboleth.profile.context.logic.ScriptedPredicate" abstract="true" />
<bean id="shibboleth.Conditions.Expression"
- class="net.shibboleth.idp.profile.logic.SpringExpressionPredicate" abstract="true" />
+ class="net.shibboleth.profile.context.logic.SpringExpressionPredicate" abstract="true" />
<bean id="shibboleth.BiConditions.Scripted"
class="net.shibboleth.shared.logic.ScriptedBiPredicate" abstract="true" />
@@ -62,13 +62,13 @@
<!-- IdPAttribute conditions. -->
<bean id="shibboleth.Conditions.SimpleAttribute"
- class="net.shibboleth.idp.profile.logic.SimpleAttributePredicate" abstract="true" />
+ class="net.shibboleth.profile.context.logic.SimpleAttributePredicate" abstract="true" />
<bean id="shibboleth.Conditions.DynamicAttribute"
- class="net.shibboleth.idp.profile.logic.DynamicAttributePredicate" abstract="true" />
+ class="net.shibboleth.profile.context.logic.DynamicAttributePredicate" abstract="true" />
<bean id="shibboleth.Conditions.RegexAttribute"
- class="net.shibboleth.idp.profile.logic.RegexAttributePredicate" abstract="true" />
+ class="net.shibboleth.profile.context.logic.RegexAttributePredicate" abstract="true" />
<bean id="shibboleth.Conditions.DateAttribute"
- class="net.shibboleth.idp.profile.logic.DateAttributePredicate" abstract="true" />
+ class="net.shibboleth.profile.context.logic.DateAttributePredicate" abstract="true" />
<!-- Parent bean for building predicates acting over a candidate c14n Subject based on proxy authn. -->
<bean id="shibboleth.Conditions.ProxyAuthentication" abstract="true"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list