[java-identity-provider COMMIT] in /trunk: idp-conf/src/main/resources/conf/profile-defaults.xml idp-profile-spring/s...
noreply at shibboleth.net
noreply at shibboleth.net
Fri May 2 05:42:33 EDT 2014
Author: rdw
Date: Fri May 2 05:42:33 2014
New Revision: 5827
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5827&view=rev
Log:
IDP-390 SSOS profile configuration. Parser, defaults, tests
Added:
trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/saml/SAML2SSOSProfileParser.java (with props)
trunk/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/saml/SAML2SSOSProfileTest.java (with props)
trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/saml/ssos.xml (with props)
trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/saml/ssosValues.xml (with props)
Modified:
trunk/idp-conf/src/main/resources/conf/profile-defaults.xml
trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/RelyingPartyNamespaceHandler.java
trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/beans.xml
Modified: trunk/idp-conf/src/main/resources/conf/profile-defaults.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/conf/profile-defaults.xml?rev=5827&r1=5826&r2=5827&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/conf/profile-defaults.xml (original)
+++ trunk/idp-conf/src/main/resources/conf/profile-defaults.xml Fri May 2 05:42:33 2014
@@ -46,6 +46,8 @@
c:_0="SecurityPolicy.SAML2ECP" /><!-- TODO -->
<!-- SAML2 - Liberty -->
+ <bean id="shibboleth.SAML2.SSOS.InboundFlowId" class="java.lang.String"
+ c:_0="SecurityPolicy.SAML2SSOS" /><!-- TODO -->
<!-- SAML1 -->
<bean id="shibboleth.SAML1.Artifact.InboundFlowId" class="java.lang.String"
Modified: trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/RelyingPartyNamespaceHandler.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/RelyingPartyNamespaceHandler.java?rev=5827&r1=5826&r2=5827&view=diff
==============================================================================
--- trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/RelyingPartyNamespaceHandler.java (original)
+++ trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/RelyingPartyNamespaceHandler.java Fri May 2 05:42:33 2014
@@ -24,6 +24,7 @@
import net.shibboleth.idp.profile.spring.relyingparty.saml.SAML2BrowserSSOProfileParser;
import net.shibboleth.idp.profile.spring.relyingparty.saml.SAML2ECPProfileParser;
import net.shibboleth.idp.profile.spring.relyingparty.saml.SAML2LogoutRequestProfileParser;
+import net.shibboleth.idp.profile.spring.relyingparty.saml.SAML2SSOSProfileParser;
import net.shibboleth.idp.profile.spring.relyingparty.saml.ShibbolethSSOProfileParser;
import net.shibboleth.idp.spring.BaseSpringNamespaceHandler;
@@ -45,6 +46,7 @@
new SAML2AttributeQueryProfileParser());
registerBeanDefinitionParser(SAML2BrowserSSOProfileParser.ELEMENT_NAME, new SAML2BrowserSSOProfileParser());
registerBeanDefinitionParser(SAML2ECPProfileParser.ELEMENT_NAME, new SAML2ECPProfileParser());
+ registerBeanDefinitionParser(SAML2SSOSProfileParser.ELEMENT_NAME, new SAML2SSOSProfileParser());
registerBeanDefinitionParser(SAML1ArtifactResolutionProfileParser.ELEMENT_NAME,
new SAML1ArtifactResolutionProfileParser());
Modified: trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/beans.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/beans.xml?rev=5827&r1=5826&r2=5827&view=diff
==============================================================================
--- trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/beans.xml (original)
+++ trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/beans.xml Fri May 2 05:42:33 2014
@@ -54,6 +54,8 @@
c:_0="SecurityPolicy.SAML2ECP" />
<!-- SAML2 - Liberty -->
+ <bean id="shibboleth.SAML2.SSOS.InboundFlowId" class="java.lang.String"
+ c:_0="SecurityPolicy.SAML2SSOS" />
<!-- SAML1 -->
<bean id="shibboleth.SAML1.Artifact.ArtifactServiceURL" class="java.lang.String"
More information about the commits
mailing list