Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 97669 invoked from network); 31 Jul 2006 23:49:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 31 Jul 2006 23:49:13 -0000 Received: (qmail 44511 invoked by uid 500); 31 Jul 2006 23:49:13 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 44459 invoked by uid 500); 31 Jul 2006 23:49:13 -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 44447 invoked by uid 99); 31 Jul 2006 23:49:13 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 16:49:13 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of elecharny@apache.org designates 140.211.166.113 as permitted sender) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 16:49:12 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id DAB3B1A981A; Mon, 31 Jul 2006 16:48:52 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r427372 - /directory/trunks/apacheds/core-unit/src/test/java/org/apache/directory/server/core/trigger/AbstractTriggerServiceTest.java Date: Mon, 31 Jul 2006 23:48:52 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060731234852.DAB3B1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Mon Jul 31 16:48:52 2006 New Revision: 427372 URL: http://svn.apache.org/viewvc?rev=427372&view=rev Log: Renamed a reference to DirectoryPartitionNexus, which has been renamed PartitionNexus Modified: directory/trunks/apacheds/core-unit/src/test/java/org/apache/directory/server/core/trigger/AbstractTriggerServiceTest.java Modified: directory/trunks/apacheds/core-unit/src/test/java/org/apache/directory/server/core/trigger/AbstractTriggerServiceTest.java URL: http://svn.apache.org/viewvc/directory/trunks/apacheds/core-unit/src/test/java/org/apache/directory/server/core/trigger/AbstractTriggerServiceTest.java?rev=427372&r1=427371&r2=427372&view=diff ============================================================================== --- directory/trunks/apacheds/core-unit/src/test/java/org/apache/directory/server/core/trigger/AbstractTriggerServiceTest.java (original) +++ directory/trunks/apacheds/core-unit/src/test/java/org/apache/directory/server/core/trigger/AbstractTriggerServiceTest.java Mon Jul 31 16:48:52 2006 @@ -29,7 +29,7 @@ import javax.naming.directory.DirContext; import javax.naming.directory.InitialDirContext; -import org.apache.directory.server.core.partition.DirectoryPartitionNexus; +import org.apache.directory.server.core.partition.PartitionNexus; import org.apache.directory.server.core.subtree.SubentryService; import org.apache.directory.server.core.unit.AbstractTestCase; @@ -47,7 +47,7 @@ */ public AbstractTriggerServiceTest() { - super( DirectoryPartitionNexus.ADMIN_PRINCIPAL, "secret" ); + super( PartitionNexus.ADMIN_PRINCIPAL, "secret" ); } @@ -59,7 +59,7 @@ */ public DirContext getContextAsAdmin() throws NamingException { - return getContextAsAdmin( DirectoryPartitionNexus.SYSTEM_PARTITION_SUFFIX ); + return getContextAsAdmin( PartitionNexus.SYSTEM_PARTITION_SUFFIX ); } @@ -77,7 +77,7 @@ Hashtable env = ( Hashtable ) sysRoot.getEnvironment().clone(); env.put( DirContext.PROVIDER_URL, dn ); env.put( DirContext.SECURITY_AUTHENTICATION, "simple" ); - env.put( DirContext.SECURITY_PRINCIPAL, DirectoryPartitionNexus.ADMIN_PRINCIPAL ); + env.put( DirContext.SECURITY_PRINCIPAL, PartitionNexus.ADMIN_PRINCIPAL ); env.put( DirContext.SECURITY_CREDENTIALS, "secret" ); return new InitialDirContext( env ); } @@ -93,7 +93,7 @@ */ public DirContext getContextAs( Name user, String password ) throws NamingException { - return getContextAs( user, password, DirectoryPartitionNexus.SYSTEM_PARTITION_SUFFIX ); + return getContextAs( user, password, PartitionNexus.SYSTEM_PARTITION_SUFFIX ); }