You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2009/06/13 07:44:56 UTC

svn commit: r784335 - in /directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree: BTreePartition.java jdbm/JdbmPartition.java

Author: elecharny
Date: Sat Jun 13 05:44:56 2009
New Revision: 784335

URL: http://svn.apache.org/viewvc?rev=784335&view=rev
Log:
Moved the suffix from the JdbmPartition to its parent. 

Modified:
    directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java
    directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java

Modified: directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java?rev=784335&r1=784334&r2=784335&view=diff
==============================================================================
--- directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java (original)
+++ directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java Sat Jun 13 05:44:56 2009
@@ -468,6 +468,15 @@
      */
     public abstract void setSubAliasIndexOn( Index<Long,ServerEntry> index ) throws Exception;
 
+    
+    /**
+     * {@inheritDoc}
+     */
+    public void setSuffix( String suffix )
+    {
+        this.suffix = suffix;
+    }
+
 
     public abstract Index<?,ServerEntry> getUserIndex( String attribute ) throws Exception;
 

Modified: directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java?rev=784335&r1=784334&r2=784335&view=diff
==============================================================================
--- directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java (original)
+++ directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java Sat Jun 13 05:44:56 2009
@@ -97,12 +97,6 @@
     }
 
 
-    public void setSuffix( String suffix )
-    {
-        super.suffix = suffix;
-    }
-
-
     public void setIndexedAttributes( Set<Index<?,ServerEntry>> indexedAttributes )
     {
         this.indexedAttributes = indexedAttributes;