Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 62567 invoked from network); 7 Oct 2005 17:01:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Oct 2005 17:01:46 -0000 Received: (qmail 62090 invoked by uid 500); 7 Oct 2005 17:01:45 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 62040 invoked by uid 500); 7 Oct 2005 17:01:45 -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 61939 invoked by uid 99); 7 Oct 2005 17:01:43 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Oct 2005 10:01:43 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 07 Oct 2005 10:01:45 -0700 Received: (qmail 62269 invoked by uid 65534); 7 Oct 2005 17:01:20 -0000 Message-ID: <20051007170120.62268.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r307166 - /directory/apacheds/trunk/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java Date: Fri, 07 Oct 2005 17:01:20 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: akarasulu Date: Fri Oct 7 10:01:16 2005 New Revision: 307166 URL: http://svn.apache.org/viewcvs?rev=307166&view=rev Log: fixed a few mistakes made during renames Modified: directory/apacheds/trunk/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java Modified: directory/apacheds/trunk/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java?rev=307166&r1=307165&r2=307166&view=diff ============================================================================== --- directory/apacheds/trunk/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java (original) +++ directory/apacheds/trunk/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java Fri Oct 7 10:01:16 2005 @@ -31,7 +31,7 @@ import javax.naming.directory.DirContext; import org.apache.ldap.server.AbstractAdminTestCase; -import org.apache.ldap.server.configuration.MutableContextPartitionConfiguration; +import org.apache.ldap.server.configuration.MutableDirectoryPartitionConfiguration; /** @@ -52,10 +52,10 @@ Set indexedAttrs; Set pcfgs = new HashSet(); - MutableContextPartitionConfiguration pcfg; + MutableDirectoryPartitionConfiguration pcfg; // Add partition 'testing' - pcfg = new MutableContextPartitionConfiguration(); + pcfg = new MutableDirectoryPartitionConfiguration(); pcfg.setName( "testing" ); pcfg.setSuffix( "ou=testing" ); @@ -78,7 +78,7 @@ pcfgs.add( pcfg ); // Add partition 'example' - pcfg = new MutableContextPartitionConfiguration(); + pcfg = new MutableDirectoryPartitionConfiguration(); pcfg.setName( "example" ); pcfg.setSuffix( "dc=example" ); @@ -102,7 +102,7 @@ pcfgs.add( pcfg ); // Add partition 'MixedCase' - pcfg = new MutableContextPartitionConfiguration(); + pcfg = new MutableDirectoryPartitionConfiguration(); pcfg.setName( "mixedcase" ); pcfg.setSuffix( "dc=MixedCase" );