[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 21:37:13 EDT 2014


Author: scantor
Date: Tue Apr  1 21:37:13 2014
New Revision: 5679

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5679&view=rev
Log:
OSJ-70 - wire in DecryptionParameters population

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=5679&r1=5678&r2=5679&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 21:37:13 2014
@@ -58,6 +58,11 @@
         class="net.shibboleth.idp.saml.impl.profile.PopulateBindingAndEndpointContexts" scope="prototype"
         p:endpointResolver-ref="shibboleth.EndpointResolver"
         p:bindings-ref="shibboleth.OutgoingBindings" />
+
+    <bean id="PopulateDecryptionParameters"
+        class="org.opensaml.profile.action.impl.PopulateDecryptionParameters" scope="prototype"
+        p:configurationLookupStrategy-ref="shibboleth.DecryptionConfigurationLookup"
+        p:decryptionParametersResolver-ref="shibboleth.DecryptionParametersResolver" />
         
     <bean id="DecryptNameIDs" class="org.opensaml.saml.saml2.profile.impl.DecryptNameIDs" 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=5679&r1=5678&r2=5679&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 21:37:13 2014
@@ -48,12 +48,15 @@
     
     <action-state id="PopulateBindingAndEndpointContexts">
         <evaluate expression="PopulateBindingAndEndpointContexts" />
-        <transition on="proceed" to="DecryptNameIDs" />
+        <transition on="proceed" to="PopulateDecryptionParameters" />
     </action-state>
 
     <!-- Pull SAML Subject if present and turn it into a principal name. -->
 
-    <!-- TODO: action to populate DecryptionParameters on inbound context. -->
+    <action-state id="PopulateDecryptionParameters">
+        <evaluate expression="PopulateDecryptionParameters" />
+        <transition on="proceed" to="DecryptNameIDs" />
+    </action-state>
     
     <action-state id="DecryptNameIDs">
         <evaluate expression="DecryptNameIDs" />



More information about the commits mailing list