From directory-cvs-return-1687-apmail-incubator-directory-cvs-archive=incubator.apache.org@incubator.apache.org Wed Oct 06 21:53:06 2004 Return-Path: Delivered-To: apmail-incubator-directory-cvs-archive@www.apache.org Received: (qmail 26295 invoked from network); 6 Oct 2004 21:53:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 6 Oct 2004 21:53:06 -0000 Received: (qmail 8746 invoked by uid 500); 6 Oct 2004 21:53:05 -0000 Delivered-To: apmail-incubator-directory-cvs-archive@incubator.apache.org Received: (qmail 8696 invoked by uid 500); 6 Oct 2004 21:53:05 -0000 Mailing-List: contact directory-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: directory-dev@incubator.apache.org Delivered-To: mailing list directory-cvs@incubator.apache.org Received: (qmail 8679 invoked by uid 99); 6 Oct 2004 21:53:04 -0000 X-ASF-Spam-Status: No, hits=-10.0 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.28) with SMTP; Wed, 06 Oct 2004 14:53:04 -0700 Received: (qmail 26279 invoked by uid 65534); 6 Oct 2004 21:53:03 -0000 Date: 6 Oct 2004 21:53:03 -0000 Message-ID: <20041006215303.26276.qmail@minotaur.apache.org> From: akarasulu@apache.org To: directory-cvs@incubator.apache.org Subject: svn commit: rev 53914 - incubator/directory/eve/trunk/backend/core/src/java/org/apache/eve X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: akarasulu Date: Wed Oct 6 14:53:02 2004 New Revision: 53914 Modified: incubator/directory/eve/trunk/backend/core/src/java/org/apache/eve/RootNexus.java incubator/directory/eve/trunk/backend/core/src/java/org/apache/eve/SystemPartition.java Log: Making RootNexus specifically take the SystemPartition as its constructor argument. Modified: incubator/directory/eve/trunk/backend/core/src/java/org/apache/eve/RootNexus.java ============================================================================== --- incubator/directory/eve/trunk/backend/core/src/java/org/apache/eve/RootNexus.java (original) +++ incubator/directory/eve/trunk/backend/core/src/java/org/apache/eve/RootNexus.java Wed Oct 6 14:53:02 2004 @@ -47,7 +47,7 @@ private static RootNexus s_singleton = null; /** the system backend */ - private ContextPartition system; + private SystemPartition system; /** the backends keyed by normalized suffix strings */ private HashMap backends = new HashMap(); @@ -56,7 +56,7 @@ * Default constructor that checks to make sure that there is only one * instance of this class within the entire JVM. */ - public RootNexus( ContextPartition system ) + public RootNexus( SystemPartition system ) { if ( null != s_singleton ) { Modified: incubator/directory/eve/trunk/backend/core/src/java/org/apache/eve/SystemPartition.java ============================================================================== --- incubator/directory/eve/trunk/backend/core/src/java/org/apache/eve/SystemPartition.java (original) +++ incubator/directory/eve/trunk/backend/core/src/java/org/apache/eve/SystemPartition.java Wed Oct 6 14:53:02 2004 @@ -38,7 +38,7 @@ * @author Apache Directory Project * @version $Rev$ */ -public class SystemPartition extends AbstractContextPartition +public final class SystemPartition extends AbstractContextPartition { /** * System backend suffix constant. Should be kept down to a single Dn name @@ -72,7 +72,7 @@ * not operate correctly. */ public SystemPartition( Database db, SearchEngine searchEngine, - AttributeType[] indexAttributes ) + AttributeType[] indexAttributes ) throws NamingException { super( db, searchEngine, indexAttributes );