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

noreply at shibboleth.net noreply at shibboleth.net
Tue Apr 1 23:20:01 EDT 2014


Author: scantor
Date: Tue Apr  1 23:20:00 2014
New Revision: 5682

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5682&view=rev
Log:
OSJ-70 - wire in response signing parameter action

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

Modified: trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-beans.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-beans.xml?rev=5682&r1=5681&r2=5682&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-beans.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-beans.xml Tue Apr  1 23:20:00 2014
@@ -90,6 +90,15 @@
     <bean id="FinalizeSAMLSubjectCanonicalization"
         class="net.shibboleth.idp.saml.impl.profile.FinalizeSAMLSubjectCanonicalization" scope="prototype" />
 
+    <bean id="PopulateResponseSignatureSigningParameters"
+            class="org.opensaml.saml.common.profile.impl.PopulateSignatureSigningParameters" scope="prototype"
+            p:configurationLookupStrategy-ref="shibboleth.SignatureSigningConfigurationLookup"
+            p:signatureSigningParametersResolver-ref="shibboleth.SignatureSigningParametersResolver">
+        <property name="activationCondition">
+            <bean class="net.shibboleth.idp.saml.impl.profile.config.logic.SignResponsesPredicate" />
+        </property>
+    </bean>
+
     <bean id="InitializeAuthenticationContext"
         class="net.shibboleth.idp.saml.impl.profile.InitializeAuthenticationContext" scope="prototype" />
 

Modified: trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml?rev=5682&r1=5681&r2=5682&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml Tue Apr  1 23:20:00 2014
@@ -78,10 +78,15 @@
     
     <action-state id="FinalizeSAMLSubjectCanonicalization">
         <evaluate expression="FinalizeSAMLSubjectCanonicalization" />
+        <transition on="proceed" to="PopulateResponseSignatureSigningParameters" />
+    </action-state>
+
+    <action-state id="PopulateResponseSignatureSigningParameters">
+        <evaluate expression="PopulateResponseSignatureSigningParameters" />
         <transition on="proceed" to="DoProfileWork" />
     </action-state>
     
-    <!-- TODO: action to populate SigningParameters on outbound and/or RP context. -->
+    <!-- TODO: action to populate SigningParameters on RP context. -->
     
     <!-- TODO: action to check encryption options and set EncryptionParameters on RP context. -->
     



More information about the commits mailing list