[java-identity-provider COMMIT] in /trunk/idp-profile-spring/src: main/java/net/shibboleth/idp/profile/spring/relying...

noreply at shibboleth.net noreply at shibboleth.net
Sat Mar 8 12:40:02 EST 2014


Author: rdw
Date: Sat Mar  8 12:40:02 2014
New Revision: 5548

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5548&view=rev
Log:
IDP-277 SAML1ArtifactProfileConfiguration plus tests

Added:
    trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/saml/SAML1ArtifactResolutionProfileParser.java   (with props)
    trunk/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/saml/SAML1ArtifactTest.java   (with props)
    trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/saml/saml1artifact.xml   (with props)
    trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/saml/saml1artifactValues.xml   (with props)
Modified:
    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/saml/beans.xml

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=5548&r1=5547&r2=5548&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 Sat Mar  8 12:40:02 2014
@@ -17,6 +17,7 @@
 
 package net.shibboleth.idp.profile.spring.relyingparty;
 
+import net.shibboleth.idp.profile.spring.relyingparty.saml.SAML1ArtifactResolutionProfileParser;
 import net.shibboleth.idp.profile.spring.relyingparty.saml.SAML2ArtifactResolutionProfileParser;
 import net.shibboleth.idp.profile.spring.relyingparty.saml.SAML2AttributeQueryProfileParser;
 import net.shibboleth.idp.profile.spring.relyingparty.saml.SAML2BrowserSSOProfileParser;
@@ -43,6 +44,10 @@
                 new SAML2BrowserSSOProfileParser());
         registerBeanDefinitionParser(SAML2ECPProfileParser.ELEMENT_NAME,
             new SAML2ECPProfileParser());
+        
+        registerBeanDefinitionParser(SAML1ArtifactResolutionProfileParser.ELEMENT_NAME,
+                new SAML1ArtifactResolutionProfileParser());
+        
         registerBeanDefinitionParser(RelyingPartyParser.ELEMENT_NAME,
                 new RelyingPartyParser());
         }

Modified: trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/saml/beans.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/saml/beans.xml?rev=5548&r1=5547&r2=5548&view=diff
==============================================================================
--- trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/saml/beans.xml (original)
+++ trunk/idp-profile-spring/src/test/resources/net/shibboleth/idp/profile/spring/relyingparty/saml/beans.xml Sat Mar  8 12:40:02 2014
@@ -33,5 +33,9 @@
     <bean id="shibboleth.SAML2.BrowserSSO.ServiceIndex" class="java.lang.String" c:_0="1111"/>
     <bean id="shibboleth.SAML2.ECP.ServiceURL" class="java.lang.String" c:_0="https://idp.example.org/ECP"/>
     <bean id="shibboleth.SAML2.ECP.ServiceIndex" class="java.lang.String" c:_0="2222"/>
+    
+    <bean id="shibboleth.SAML1.Artifact.ServiceURL" class="java.lang.String" c:_0="https://idp.example.org/Artifact/SAML1"/>
+    <bean id="shibboleth.SAML1.Artifact.ServiceIndex" class="java.lang.String" c:_0="43210"/>
+    
 </beans>
                             



More information about the commits mailing list