[java-identity-provider COMMIT] in /trunk: idp-conf/src/main/resources/flows/authn/authn-conditions-flow.xml idp-conf...
noreply at shibboleth.net
noreply at shibboleth.net
Thu Apr 24 16:59:47 EDT 2014
Author: scantor
Date: Thu Apr 24 16:59:47 2014
New Revision: 5771
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5771&view=rev
Log:
Alter contract such that successful events return no event, and refactor flows to take advantage.
Modified:
trunk/idp-conf/src/main/resources/flows/authn/authn-conditions-flow.xml
trunk/idp-conf/src/main/resources/metadata/example-metadata.xml
trunk/idp-conf/src/main/resources/system/flows/authn/authn-abstract-flow.xml
trunk/idp-conf/src/main/resources/system/flows/authn/authn-flow.xml
trunk/idp-conf/src/main/resources/system/flows/authn/ipaddress-authn-flow.xml
trunk/idp-conf/src/main/resources/system/flows/authn/jaas-authn-flow.xml
trunk/idp-conf/src/main/resources/system/flows/authn/ldap-authn-flow.xml
trunk/idp-conf/src/main/resources/system/flows/authn/remoteuser-authn-flow.xml
trunk/idp-conf/src/main/resources/system/flows/c14n/simple-subject-c14n-flow.xml
trunk/idp-conf/src/main/resources/system/flows/c14n/subject-c14n-abstract-flow.xml
trunk/idp-conf/src/main/resources/system/flows/c14n/subject-c14n-authn-flow.xml
trunk/idp-conf/src/main/resources/system/flows/c14n/subject-c14n-saml-default-flow.xml
trunk/idp-conf/src/main/resources/system/flows/c14n/subject-c14n-saml-flow.xml
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
trunk/idp-conf/src/main/resources/system/flows/saml/saml1/attribute-query-flow.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml1/sso-abstract-flow.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml1/sso-security-flow.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml2/attribute-query-flow.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml2/sso-abstract-flow.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml2/sso-security-flow.xml
trunk/idp-conf/src/main/resources/system/flows/saml/security-abstract-flow.xml
trunk/idp-conf/src/main/resources/system/flows/saml/soap-security-flow.xml
trunk/idp-conf/src/main/resources/views/login.vm
trunk/idp-profile-api/src/main/java/net/shibboleth/idp/profile/AbstractProfileAction.java
trunk/idp-profile-api/src/main/java/net/shibboleth/idp/profile/ActionSupport.java
trunk/idp-profile-api/src/test/java/net/shibboleth/idp/profile/ActionTestingSupport.java
Modified: trunk/idp-conf/src/main/resources/flows/authn/authn-conditions-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/flows/authn/authn-conditions-flow.xml?rev=5771&r1=5770&r2=5771&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/flows/authn/authn-conditions-flow.xml (original)
+++ trunk/idp-conf/src/main/resources/flows/authn/authn-conditions-flow.xml Thu Apr 24 16:59:47 2014
@@ -13,11 +13,11 @@
<transition on="InvalidPassword" to="CallExpiredPassword" />
- <transition on="#{true}" to="DisplayUsernamePasswordPage" />
+ <transition to="DisplayUsernamePasswordPage" />
</action-state>
<subflow-state id="CallExpiringPassword" subflow="Authentication.ExpiringPassword">
- <transition on="proceed" to="CallSubjectCanonicalization" />
+ <transition on="proceed" to="proceed" />
</subflow-state>
<subflow-state id="CallExpiredPassword" subflow="Authentication.ExpiredPassword">
Modified: trunk/idp-conf/src/main/resources/metadata/example-metadata.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/metadata/example-metadata.xml?rev=5771&r1=5770&r2=5771&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/metadata/example-metadata.xml (original)
+++ trunk/idp-conf/src/main/resources/metadata/example-metadata.xml Thu Apr 24 16:59:47 2014
@@ -58,7 +58,7 @@
<AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="http://localhost/sp/SAML2/POST/ACS" index="3"/>
<AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="http://localhost:8080/sp/SAML2/POST/ACS" index="4"/>
- <AssertionConsumerService Binding="urn:oasis:names:tc:SAML:1.0:profiles:browser-post" Location="https://sp.example.org/SAML1/POST/ACS" index="10"/>
+ <AssertionConsumerService Binding="urn:oasis:names:tc:SAML:1.0:profiles:browser-post" Location="https://localhost:8443/sp/SAML1/POST/ACS" index="10"/>
</SPSSODescriptor>
</EntityDescriptor>
Modified: trunk/idp-conf/src/main/resources/system/flows/authn/authn-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/authn/authn-abstract-flow.xml?rev=5771&r1=5770&r2=5771&view=diff
==============================================================================
[... 1409 lines stripped ...]
More information about the commits
mailing list