[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
Fri Mar 28 13:04:09 EDT 2014
Author: scantor
Date: Fri Mar 28 13:04:09 2014
New Revision: 5656
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5656&view=rev
Log:
Wire in decryption 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=5656&r1=5655&r2=5656&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 Fri Mar 28 13:04:09 2014
@@ -53,6 +53,8 @@
class="net.shibboleth.idp.saml.impl.profile.PopulateBindingAndEndpointContexts" scope="prototype"
p:endpointResolver-ref="shibboleth.EndpointResolver"
p:bindings-ref="shibboleth.OutgoingBindings" />
+
+ <bean id="DecryptNameIDs" class="org.opensaml.saml.saml2.profile.impl.DecryptNameIDs" scope="prototype" />
<bean id="ExtractSubjectFromRequest"
class="net.shibboleth.idp.saml.impl.profile.ExtractSubjectFromRequest" 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=5656&r1=5655&r2=5656&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 Fri Mar 28 13:04:09 2014
@@ -41,10 +41,16 @@
<action-state id="PopulateBindingAndEndpointContexts">
<evaluate expression="PopulateBindingAndEndpointContexts" />
- <transition on="proceed" to="ExtractSubjectFromRequest" />
+ <transition on="proceed" to="DecryptNameIDs" />
</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="DecryptNameIDs">
+ <evaluate expression="DecryptNameIDs" />
+ <transition on="proceed" to="ExtractSubjectFromRequest" />
+ </action-state>
<action-state id="ExtractSubjectFromRequest">
<evaluate expression="ExtractSubjectFromRequest" />
More information about the commits
mailing list