[java-plugin-shibd-saml] branch main updated: Rebase profile configs on new base class and clean up bitmask test.

Codeberg noreply at shibboleth.net
Wed Mar 4 16:08:54 UTC 2026


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

codeberg pushed a commit to branch main
in repository java-plugin-shibd-saml.

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

The following commit(s) were added to refs/heads/main by this push:
     new bd6c829  Rebase profile configs on new base class and clean up bitmask test.
bd6c829 is described below

commit bd6c8297db4801f33259065bed95fe196c655edc
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Mar 4 11:08:41 2026 -0500

    Rebase profile configs on new base class and clean up bitmask test.
---
 .../net/shibboleth/idp/module/conf/sp/saml-test-agents.xml    | 11 ++++++++++-
 .../config/impl/AbstractSAML2ProfileConfiguration.java        |  2 +-
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/sp-saml-conf-impl/src/test/resources/net/shibboleth/idp/module/conf/sp/saml-test-agents.xml b/sp-saml-conf-impl/src/test/resources/net/shibboleth/idp/module/conf/sp/saml-test-agents.xml
index 69a7943..50dc396 100644
--- a/sp-saml-conf-impl/src/test/resources/net/shibboleth/idp/module/conf/sp/saml-test-agents.xml
+++ b/sp-saml-conf-impl/src/test/resources/net/shibboleth/idp/module/conf/sp/saml-test-agents.xml
@@ -62,7 +62,16 @@
     </util:list>
 
     <util:list id="test.featureBlockingProfileConfigurations">
-        <bean parent="SAML2.SSO" p:disallowedFeatures="0x1F" />
+        <bean parent="SAML2.SSO">
+            <property name="disallowedFeatures">
+                <util:set>
+                    <ref bean="SAML2.SSO.FEATURE_AUTHNCONTEXT" />
+                    <ref bean="SAML2.SSO.FEATURE_NAMEIDFORMAT" />
+                    <ref bean="SAML2.SSO.FEATURE_SPNAMEQUALIFIER" />
+                    <ref bean="SAML2.SSO.FEATURE_FORCEAUTHN" />
+                </util:set>
+            </property>
+        </bean>
         <ref bean="SAML2.ECP" />
         <ref bean="SAML2.Logout" />
     </util:list>
diff --git a/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/config/impl/AbstractSAML2ProfileConfiguration.java b/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/config/impl/AbstractSAML2ProfileConfiguration.java
index caa8026..244d5f1 100644
--- a/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/config/impl/AbstractSAML2ProfileConfiguration.java
+++ b/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/config/impl/AbstractSAML2ProfileConfiguration.java
@@ -20,11 +20,11 @@ import java.util.function.Predicate;
 import javax.annotation.Nonnull;
 import javax.annotation.Nullable;
 
-import net.shibboleth.profile.config.AbstractConditionalProfileConfiguration;
 import net.shibboleth.shared.annotation.constraint.NotEmpty;
 import net.shibboleth.shared.logic.Constraint;
 import net.shibboleth.shared.logic.FunctionSupport;
 import net.shibboleth.shared.logic.PredicateSupport;
+import net.shibboleth.sp.profile.config.AbstractConditionalProfileConfiguration;
 import net.shibboleth.sp.saml.saml2.profile.config.SAML2ProfileConfiguration;
 
 import org.opensaml.messaging.context.MessageContext;

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


More information about the commits mailing list