Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 89092 invoked from network); 8 Jun 2008 04:29:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Jun 2008 04:29:31 -0000 Received: (qmail 39244 invoked by uid 500); 8 Jun 2008 04:29:34 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 39210 invoked by uid 500); 8 Jun 2008 04:29:34 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 39201 invoked by uid 99); 8 Jun 2008 04:29:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jun 2008 21:29:33 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Jun 2008 04:28:53 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9D8E72388A26; Sat, 7 Jun 2008 21:29:10 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r664438 - /directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/ScopeEnum.java Date: Sun, 08 Jun 2008 04:29:10 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080608042910.9D8E72388A26@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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. *