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

noreply at shibboleth.net noreply at shibboleth.net
Thu Feb 20 13:19:31 EST 2014


Author: scantor
Date: Thu Feb 20 13:19:31 2014
New Revision: 5420

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5420&view=rev
Log:
Switch to SAML-aware RP context setup.

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
    trunk/idp-conf/src/main/resources/system/flows/saml2/sso-abstract-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml2/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=5420&r1=5419&r2=5420&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 Thu Feb 20 13:19:31 2014
@@ -95,8 +95,8 @@
         p:profileId="#{T(net.shibboleth.idp.saml.profile.config.saml1.BrowserSSOProfileConfiguration).PROFILE_ID}" />
 
     <bean
-        id="InitializeRelyingPartyContext"
-        class="net.shibboleth.idp.profile.impl.InitializeRelyingPartyContext"
+        id="InitializeRelyingPartyContexFromSAMLPeer"
+        class="net.shibboleth.idp.saml.impl.profile.InitializeRelyingPartyContextFromSAMLPeer"
         scope="prototype" />
 
     <bean

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=5420&r1=5419&r2=5420&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 Thu Feb 20 13:19:31 2014
@@ -17,11 +17,11 @@
 
     <action-state id="HandleInboundMessage">
         <evaluate expression="HandleInboundMessage" />
-        <transition on="proceed" to="InitializeRelyingPartyContext" />
+        <transition on="proceed" to="InitializeRelyingPartyContexFromSAMLPeer" />
     </action-state>
 
-    <action-state id="InitializeRelyingPartyContext">
-        <evaluate expression="InitializeRelyingPartyContext" />
+    <action-state id="InitializeRelyingPartyContexFromSAMLPeer">
+        <evaluate expression="InitializeRelyingPartyContexFromSAMLPeer" />
         <transition on="proceed" to="SelectRelyingPartyConfiguration" />
     </action-state>
 

Modified: trunk/idp-conf/src/main/resources/system/flows/saml2/sso-abstract-beans.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml2/sso-abstract-beans.xml?rev=5420&r1=5419&r2=5420&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml2/sso-abstract-beans.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml2/sso-abstract-beans.xml Thu Feb 20 13:19:31 2014
@@ -178,7 +178,7 @@
     
     <bean id="AddBasicMessageMetadataContext" class="idp.AddBasicMessageMetadataContext" />
     
-    <bean id="InitializeRelyingPartyContext" class="net.shibboleth.idp.profile.impl.InitializeRelyingPartyContext" />
+    <bean id="InitializeRelyingPartyContexFromSAMLPeer" class="net.shibboleth.idp.saml.impl.profile.InitializeRelyingPartyContextFromSAMLPeer" />
             
     <bean id="CheckMandatoryIssuer" class="org.opensaml.profile.action.impl.CheckMandatoryIssuer" />
     

Modified: trunk/idp-conf/src/main/resources/system/flows/saml2/sso-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml2/sso-abstract-flow.xml?rev=5420&r1=5419&r2=5420&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml2/sso-abstract-flow.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml2/sso-abstract-flow.xml Thu Feb 20 13:19:31 2014
@@ -26,11 +26,11 @@
 
     <action-state id="AddBasicMessageMetadataContext">
         <evaluate expression="AddBasicMessageMetadataContext" />
-        <transition on="proceed" to="InitializeRelyingPartyContext" />
+        <transition on="proceed" to="InitializeRelyingPartyContexFromSAMLPeer" />
     </action-state>
     
-    <action-state id="InitializeRelyingPartyContext">
-        <evaluate expression="InitializeRelyingPartyContext" />
+    <action-state id="InitializeRelyingPartyContexFromSAMLPeer">
+        <evaluate expression="InitializeRelyingPartyContexFromSAMLPeer" />
         <transition on="proceed" to="CheckMandatoryIssuer"/>
     </action-state>
           



More information about the commits mailing list