Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 96828 invoked from network); 30 Jul 2008 18:46:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Jul 2008 18:46:41 -0000 Received: (qmail 1107 invoked by uid 500); 30 Jul 2008 18:46:40 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 1067 invoked by uid 500); 30 Jul 2008 18:46:40 -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 1058 invoked by uid 99); 30 Jul 2008 18:46:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jul 2008 11:46:40 -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; Wed, 30 Jul 2008 18:45:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 910AA238889F; Wed, 30 Jul 2008 11:46:20 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r681172 - /directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/changelog/TaggableSearchableChangeLogStore.java Date: Wed, 30 Jul 2008 18:46:20 -0000 To: commits@directory.apache.org From: kayyagari@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080730184620.910AA238889F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kayyagari Date: Wed Jul 30 11:46:19 2008 New Revision: 681172 URL: http://svn.apache.org/viewvc?rev=681172&view=rev Log: added a new method to get the instantiated partition of CLS Modified: directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/changelog/TaggableSearchableChangeLogStore.java Modified: directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/changelog/TaggableSearchableChangeLogStore.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/changelog/TaggableSearchableChangeLogStore.java?rev=681172&r1=681171&r2=681172&view=diff ============================================================================== --- directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/changelog/TaggableSearchableChangeLogStore.java (original) +++ directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/changelog/TaggableSearchableChangeLogStore.java Wed Jul 30 11:46:19 2008 @@ -19,6 +19,8 @@ */ package org.apache.directory.server.core.changelog; +import org.apache.directory.server.core.partition.Partition; + /** * TODO TaggableSearchableChangeLogStore. @@ -34,4 +36,13 @@ * @return the snapshot query engine for this store. */ TagSearchEngine getTagSearchEngine(); + + /** + * + * Gets the read only Partition backed by this ChangeLogStore. + * The init() method on this partition needs to be called by the caller. + * + * @return the read only uninitialized partition + */ + Partition getPartition(); }