You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2008/06/06 09:39:57 UTC

svn commit: r663846 - /directory/shared/branches/bigbang/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java

Author: akarasulu
Date: Fri Jun  6 00:39:57 2008
New Revision: 663846

URL: http://svn.apache.org/viewvc?rev=663846&view=rev
Log:
fix bug due to misspelled strong auth level

Modified:
    directory/shared/branches/bigbang/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java

Modified: directory/shared/branches/bigbang/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java
URL: http://svn.apache.org/viewvc/directory/shared/branches/bigbang/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java?rev=663846&r1=663845&r2=663846&view=diff
==============================================================================
--- directory/shared/branches/bigbang/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java (original)
+++ directory/shared/branches/bigbang/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java Fri Jun  6 00:39:57 2008
@@ -41,7 +41,7 @@
     /**
      * Strong authentication (bound with encrypted cerdentials)
      */
-    STRONG( 2, "string" );
+    STRONG( 2, "strong" );
     
     private int level;