You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ka...@apache.org on 2008/07/30 20:46:20 UTC

svn commit: r681172 - /directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/changelog/TaggableSearchableChangeLogStore.java

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();
 }