[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 13:17:15 EST 2014
Author: tzeller
Date: Fri Jan 31 13:17:15 2014
New Revision: 5288
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5288&view=rev
Log:
IDP-219 : Add AddAuthenticationStatementToAssertion 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=5288&r1=5287&r2=5288&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 13:17:15 2014
@@ -138,6 +138,10 @@
class="net.shibboleth.idp.saml.impl.profile.saml1.AddResponseShell" />
<bean
+ id="AddAuthenticationStatementToAssertion"
+ class="net.shibboleth.idp.saml.impl.profile.saml1.AddAuthenticationStatementToAssertion" />
+
+ <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=5288&r1=5287&r2=5288&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 13:17:15 2014
@@ -81,7 +81,12 @@
<action-state id="AddResponseShell">
<evaluate expression="AddResponseShell" />
- <transition on="proceed" to="RecordResponseComplete" />
+ <transition on="proceed" to="AddAuthenticationStatementToAssertion" />
+ </action-state>
+
+ <action-state id="AddAuthenticationStatementToAssertion">
+ <evaluate expression="AddAuthenticationStatementToAssertion" />
+ <transition on="proceed" to="RecordResponseComplete"/>
</action-state>
<!-- TODO needs non-null outbound message context
More information about the commits
mailing list