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/08 06:29:10 UTC

svn commit: r664438 - /directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/ScopeEnum.java

Author: akarasulu
Date: Sat Jun  7 21:29:10 2008
New Revision: 664438

URL: http://svn.apache.org/viewvc?rev=664438&view=rev
Log:
formatting

Modified:
    directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/ScopeEnum.java

Modified: directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/ScopeEnum.java
URL: http://svn.apache.org/viewvc/directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/ScopeEnum.java?rev=664438&r1=664437&r2=664438&view=diff
==============================================================================
--- directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/ScopeEnum.java (original)
+++ directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/ScopeEnum.java Sat Jun  7 21:29:10 2008
@@ -22,6 +22,7 @@
 
 import javax.naming.directory.SearchControls;
 
+
 /**
  * Type-safe scope parameter enumeration.
  * 
@@ -42,6 +43,7 @@
     /** Stores the integer value of each element of the enumeration */
     private int value;
 
+    
     /**
      * Private construct so no other instances can be created other than the
      * public static constants in this class.
@@ -54,6 +56,7 @@
         this.value = value;
     }
 
+    
     /**
      * Gets the LdapValue for the scope enumeration as opposed to the JNDI value
      * which is returned using getValue().
@@ -66,6 +69,7 @@
         return value;
     }
 
+    
     /**
      * Gets the type safe enumeration constant corresponding to a SearchControls
      * scope value.
@@ -93,6 +97,7 @@
         }
     }
 
+    
     /**
      * Gets the enum corresponding to the given integer value. 
      *