[java-identity-provider COMMIT] in /trunk/idp-conf/src/main/resources/system/flows/saml1: sso-abstract-beans.xml sso-...

noreply at shibboleth.net noreply at shibboleth.net
Fri Jan 31 15:38:54 EST 2014


Author: tzeller
Date: Fri Jan 31 15:38:54 2014
New Revision: 5289

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5289&view=rev
Log:
IDP-219 : Add AddAttributeStatementToAssertion action to SAML 1 flow.

Modified:
    trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml

Modified: trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml?rev=5289&r1=5288&r2=5289&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml Fri Jan 31 15:38:54 2014
@@ -142,6 +142,10 @@
         class="net.shibboleth.idp.saml.impl.profile.saml1.AddAuthenticationStatementToAssertion" />
 
     <bean
+        id="AddAttributeStatementToAssertion"
+        class="net.shibboleth.idp.saml.impl.profile.saml1.AddAttributeStatementToAssertion" />
+
+    <bean
         id="RecordResponseComplete"
         class="net.shibboleth.idp.profile.impl.RecordResponseComplete" />
 

Modified: trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml?rev=5289&r1=5288&r2=5289&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml Fri Jan 31 15:38:54 2014
@@ -86,6 +86,11 @@
     
     <action-state id="AddAuthenticationStatementToAssertion">
         <evaluate expression="AddAuthenticationStatementToAssertion" />
+        <transition on="proceed" to="AddAttributeStatementToAssertion"/>
+    </action-state>
+    
+    <action-state id="AddAttributeStatementToAssertion">
+        <evaluate expression="AddAttributeStatementToAssertion" />
         <transition on="proceed" to="RecordResponseComplete"/>
     </action-state>
 



More information about the commits mailing list