You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2008/12/03 21:00:17 UTC

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

Author: elecharny
Date: Wed Dec  3 12:00:17 2008
New Revision: 723048

URL: http://svn.apache.org/viewvc?rev=723048&view=rev
Log:
Replaced tabs by 4 spaces

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

Modified: directory/shared/branches/shared-mina2/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java
URL: http://svn.apache.org/viewvc/directory/shared/branches/shared-mina2/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java?rev=723048&r1=723047&r2=723048&view=diff
==============================================================================
--- directory/shared/branches/shared-mina2/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java (original)
+++ directory/shared/branches/shared-mina2/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/AuthenticationLevel.java Wed Dec  3 12:00:17 2008
@@ -28,11 +28,11 @@
  */
 public enum AuthenticationLevel
 {
-	/**
-	 * Invalid authentication type
-	 */
-	INVALID(-1, "invalid" ),
-	
+    /**
+     * Invalid authentication type
+     */
+    INVALID(-1, "invalid" ),
+    
     /**
      * No authentication (anonymous access)
      */
@@ -47,10 +47,10 @@
      * Strong authentication (bound with encrypted credentials)
      */
     STRONG( 2, "strong" ),
-	
-	/**
-	 * Unauthentication, if the BIND contains a DN but no credentials
-	 */
+    
+    /**
+     * Unauthentication, if the BIND contains a DN but no credentials
+     */
     UNAUTHENT( 3, "unauthent" );
     
     private int level;