[java-identity-provider COMMIT] in /trunk: idp-conf/src/main/resources/conf/messages.properties idp-conf/src/main/res...

noreply at shibboleth.net noreply at shibboleth.net
Sun Sep 7 20:36:55 EDT 2014


Author: scantor
Date: Sun Sep  7 20:36:54 2014
New Revision: 6501

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6501&view=rev
Log:
IDP-224 - kind of working SAML logout flow

Added:
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-front-abstract-beans.xml   (with props)
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-front-abstract-flow.xml   (with props)
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-post-beans.xml   (with props)
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-post-flow.xml   (with props)
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-post-simplesign-beans.xml   (with props)
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-post-simplesign-flow.xml   (with props)
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-redirect-beans.xml   (with props)
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-redirect-flow.xml   (with props)
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/slo-security-flow.xml   (with props)
Modified:
    trunk/idp-conf/src/main/resources/conf/messages.properties
    trunk/idp-conf/src/main/resources/conf/relying-party.xml
    trunk/idp-conf/src/main/resources/metadata/example-metadata.xml
    trunk/idp-conf/src/main/resources/system/conf/audit-system.xml
    trunk/idp-conf/src/main/resources/system/conf/global-system.xml
    trunk/idp-conf/src/main/resources/system/conf/legacy-relying-party-defaults.xml
    trunk/idp-conf/src/main/resources/system/conf/relying-party-system.xml
    trunk/idp-conf/src/main/resources/system/conf/saml-binding-config.xml
    trunk/idp-conf/src/main/resources/system/conf/webflow-config.xml
    trunk/idp-conf/src/main/resources/system/flows/logout/logout-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml1/sso-abstract-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml/saml2/sso-abstract-beans.xml
    trunk/idp-conf/src/main/resources/views/logout.vm
    trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/saml/SAML2LogoutRequestProfileParser.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/audit/impl/NameIDAuditExtractor.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/ExtractSubjectFromRequest.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/PopulateBindingAndEndpointContexts.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessLogout.java

Modified: trunk/idp-conf/src/main/resources/conf/messages.properties
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/conf/messages.properties?rev=6501&r1=6500&r2=6501&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/conf/messages.properties (original)
+++ trunk/idp-conf/src/main/resources/conf/messages.properties Sun Sep  7 20:36:54 2014
@@ -1,6 +1,8 @@
 # Event to error key mappings
 
 AccessDenied = access
+
+AsyncLogout = async-logout
 
 EndpointResolutionFailed = endpoint
 
@@ -43,6 +45,9 @@
 access.title = Access Denied
 access.message = You do not have access to the requested resource.
 
+async-logout.title = Logout Completed
+async-logout.message = Logout complete. Service provider requested no response.
+
 authn.title = Login Failed
 authn.message = User login was not successful or could not meet the requirements of the requesting application.
 

Modified: trunk/idp-conf/src/main/resources/conf/relying-party.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/conf/relying-party.xml?rev=6501&r1=6500&r2=6501&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/conf/relying-party.xml (original)
+++ trunk/idp-conf/src/main/resources/conf/relying-party.xml Sun Sep  7 20:36:54 2014
@@ -37,6 +37,7 @@
                 <ref bean="SAML1.ArtifactResolution" />
                 <ref bean="SAML2.SSO" />
                 <ref bean="SAML2.ECP" />
+                <ref bean="SAML2.Logout" />
                 <ref bean="SAML2.AttributeQuery" />
                 <ref bean="SAML2.ArtifactResolution" />
             </util:list>
@@ -71,6 +72,7 @@
                         -->
                     </bean>
                     <ref bean="SAML2.ECP" />
+                    <ref bean="SAML2.Logout" />
                     <ref bean="SAML2.AttributeQuery" />
                     <ref bean="SAML2.ArtifactResolution" />
                 </util:list>

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=6501&r1=6500&r2=6501&view=diff
==============================================================================

[... 500 lines stripped ...]


More information about the commits mailing list