[java-identity-provider COMMIT] in /trunk/idp-conf/src/main/resources/conf/authn: external-authn-config.xml password-...

noreply at shibboleth.net noreply at shibboleth.net
Wed May 6 07:58:47 EDT 2015


Author: serac
Date: Wed May  6 07:58:47 2015
New Revision: 7499

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7499&view=rev
Log:
IDP-716 Fix backward ClassifiedMessageMap entries.

Modified:
    trunk/idp-conf/src/main/resources/conf/authn/external-authn-config.xml
    trunk/idp-conf/src/main/resources/conf/authn/password-authn-config.xml
    trunk/idp-conf/src/main/resources/conf/authn/remoteuser-authn-config.xml
    trunk/idp-conf/src/main/resources/conf/authn/x509-authn-config.xml

Modified: trunk/idp-conf/src/main/resources/conf/authn/external-authn-config.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/conf/authn/external-authn-config.xml?rev=7499&r1=7498&r2=7499&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/conf/authn/external-authn-config.xml	(original)
+++ trunk/idp-conf/src/main/resources/conf/authn/external-authn-config.xml	Wed May  6 07:58:47 2015
@@ -22,7 +22,9 @@
     <!--
     Define entries here to map error messages returned by external modules and classify them as particular
     kinds of errors for use in your templates and as events in flows.
-    
+
+    Keys are events to signal, values are error codes.
+
     The examples here just allow external signaling of the exact type of condition to record.
     
     If you want to "fall-through" to other login flows, include a mapping to "ReselectFlow".

Modified: trunk/idp-conf/src/main/resources/conf/authn/password-authn-config.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/conf/authn/password-authn-config.xml?rev=7499&r1=7498&r2=7499&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/conf/authn/password-authn-config.xml	(original)
+++ trunk/idp-conf/src/main/resources/conf/authn/password-authn-config.xml	Wed May  6 07:58:47 2015
@@ -38,6 +38,8 @@
     <!--
     Define entries here to map error messages detected by validation actions and classify them as particular
     kinds of errors for use in your templates and as events in flows.
+
+    Keys are events to signal, values are error codes.
     -->
     <util:map id="shibboleth.authn.Password.ClassifiedMessageMap">
         <entry key="UnknownUsername">

Modified: trunk/idp-conf/src/main/resources/conf/authn/remoteuser-authn-config.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/conf/authn/remoteuser-authn-config.xml?rev=7499&r1=7498&r2=7499&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/conf/authn/remoteuser-authn-config.xml	(original)
+++ trunk/idp-conf/src/main/resources/conf/authn/remoteuser-authn-config.xml	Wed May  6 07:58:47 2015
@@ -22,15 +22,17 @@
     <!--
     Define entries here to map error messages returned by external modules and classify them as particular
     kinds of errors for use in your templates and as events in flows.
-    
+
+    Keys are events to signal, values are error codes.
+
     The examples here just allow external signaling of an exact condition.
     
     If you want to "fall-through" to other login flows, include a mapping to "ReselectFlow".
     -->
     <util:map id="shibboleth.authn.RemoteUser.ClassifiedMessageMap">
-        <entry key="NoCredentials">
+        <entry key="ReselectFlow">
             <list>
-                <value>ReselectFlow</value>
+                <value>NoCredentials</value>
             </list>
         </entry>
         <entry key="UnknownUsername">

Modified: trunk/idp-conf/src/main/resources/conf/authn/x509-authn-config.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/conf/authn/x509-authn-config.xml?rev=7499&r1=7498&r2=7499&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/conf/authn/x509-authn-config.xml	(original)
+++ trunk/idp-conf/src/main/resources/conf/authn/x509-authn-config.xml	Wed May  6 07:58:47 2015
@@ -22,20 +22,18 @@
     <!--
     Define entries here to map error messages returned by external modules and classify them as particular
     kinds of errors for use in your templates and as events in flows.
+
+    Keys are events to signal, values are error codes.
     
     The examples here just allow external signaling of an exact condition.
     
     If you want to "fall-through" to other login flows, include a mapping to "ReselectFlow".
     -->
     <util:map id="shibboleth.authn.X509.ClassifiedMessageMap">
-        <entry key="NoCredentials">
+        <entry key="ReselectFlow">
             <list>
-                <value>ReselectFlow</value>
-            </list>
-        </entry>
-        <entry key="InvalidCredentials">
-            <list>
-                <value>ReselectFlow</value>
+                <value>NoCredentials</value>
+                <value>InvalidCredentials</value>
             </list>

[... 3 lines stripped ...]


More information about the commits mailing list