Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 41741 invoked from network); 13 May 2008 12:03:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 May 2008 12:03:46 -0000 Received: (qmail 40418 invoked by uid 500); 13 May 2008 12:03:48 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 40376 invoked by uid 500); 13 May 2008 12:03:48 -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 40365 invoked by uid 99); 13 May 2008 12:03:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 May 2008 05:03:48 -0700 X-ASF-Spam-Status: No, hits=-1999.6 required=10.0 tests=ALL_TRUSTED,SUBJECT_FUZZY_TION 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; Tue, 13 May 2008 12:03:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A618623889FE; Tue, 13 May 2008 05:03:25 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r655826 - /directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/Partition.java Date: Tue, 13 May 2008 12:03:25 -0000 To: commits@directory.apache.org From: pamarcelot@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080513120325.A618623889FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pamarcelot Date: Tue May 13 05:03:25 2008 New Revision: 655826 URL: http://svn.apache.org/viewvc?rev=655826&view=rev Log: Fixed javadoc. Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/Partition.java Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/Partition.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/Partition.java?rev=655826&r1=655825&r2=655826&view=diff ============================================================================== --- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/Partition.java (original) +++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/Partition.java Tue May 13 05:03:25 2008 @@ -73,14 +73,14 @@ /** * Creates a new instance of Partition. * - * @param name - * the name of the partition + * @param id + * the id of the partition */ - public Partition( String name ) + public Partition( String id ) { indexedAttributes = new ArrayList(); contextEntry = new BasicAttributes( true ); - this.id = name; + this.id = id; }