[java-identity-provider] branch main updated: Fix up some constant references.
Scott Cantor
cantor.2 at osu.edu
Wed Mar 1 19:10:36 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=d7dd8144111fa15d6a0de95a029b00e435c12e9c
The following commit(s) were added to refs/heads/main by this push:
new d7dd81441 Fix up some constant references.
d7dd81441 is described below
commit d7dd8144111fa15d6a0de95a029b00e435c12e9c
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Mar 1 14:10:33 2023 -0500
Fix up some constant references.
---
.../net/shibboleth/idp/conf/relying-party-system.xml | 13 +++++++++++--
.../config/impl/SingleLogoutProfileConfigurationTest.java | 3 ---
2 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-system.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-system.xml
index d1710d0b0..3db9413cb 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-system.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-system.xml
@@ -105,10 +105,19 @@
</bean>
<util:constant id="SAML2.SSO.FEATURE_AUTHNCONTEXT"
- static-field="net.shibboleth.idp.saml.saml2.profile.config.impl.BrowserSSOProfileConfiguration.FEATURE_AUTHNCONTEXT"/>
+ static-field="net.shibboleth.saml.saml2.profile.config.BrowserSSOProfileConfiguration.FEATURE_AUTHNCONTEXT"/>
<util:constant id="SAML2.SSO.FEATURE_SCOPING"
- static-field="net.shibboleth.idp.saml.saml2.profile.config.impl.BrowserSSOProfileConfiguration.FEATURE_SCOPING"/>
+ static-field="net.shibboleth.saml.saml2.profile.config.BrowserSSOProfileConfiguration.FEATURE_SCOPING"/>
+
+ <util:constant id="SAML2.SSO.FEATURE_NAMEIDFORMAT"
+ static-field="net.shibboleth.saml.saml2.profile.config.BrowserSSOProfileConfiguration.FEATURE_NAMEIDFORMAT"/>
+
+ <util:constant id="SAML2.SSO.FEATURE_SPNAMEQUALIFIER"
+ static-field="net.shibboleth.saml.saml2.profile.config.BrowserSSOProfileConfiguration.FEATURE_SPNAMEQUALIFIER"/>
+
+ <util:constant id="SAML2.SSO.FEATURE_FORCEAUTHN"
+ static-field="net.shibboleth.saml.saml2.profile.config.BrowserSSOProfileConfiguration.FEATURE_FORCEAUTHN"/>
<bean id="SAML2.ECP" lazy-init="true"
class="net.shibboleth.idp.saml.saml2.profile.config.impl.ECPProfileConfiguration"
diff --git a/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/config/impl/SingleLogoutProfileConfigurationTest.java b/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/config/impl/SingleLogoutProfileConfigurationTest.java
index 33f6e4d98..a0b680b0e 100644
--- a/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/config/impl/SingleLogoutProfileConfigurationTest.java
+++ b/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/config/impl/SingleLogoutProfileConfigurationTest.java
@@ -30,9 +30,6 @@ public class SingleLogoutProfileConfigurationTest {
@Test
public void testProfileId() {
- Assert.assertEquals(SingleLogoutProfileConfiguration.PROFILE_ID,
- "http://shibboleth.net/ns/profiles/saml2/logout");
-
final SingleLogoutProfileConfiguration config = new SingleLogoutProfileConfiguration();
Assert.assertEquals(config.getId(), SingleLogoutProfileConfiguration.PROFILE_ID);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list