You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2010/05/01 18:22:37 UTC

svn commit: r940072 - /directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/Store.java

Author: seelmann
Date: Sat May  1 16:22:36 2010
New Revision: 940072

URL: http://svn.apache.org/viewvc?rev=940072&view=rev
Log:
Added javadoc

Modified:
    directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/Store.java

Modified: directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/Store.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/Store.java?rev=940072&r1=940071&r2=940072&view=diff
==============================================================================
--- directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/Store.java (original)
+++ directory/apacheds/trunk/xdbm-base/src/main/java/org/apache/directory/server/xdbm/Store.java Sat May  1 16:22:36 2010
@@ -30,9 +30,9 @@ import java.util.Set;
 
 import org.apache.directory.server.constants.ApacheSchemaConstants;
 import org.apache.directory.shared.ldap.constants.SchemaConstants;
+import org.apache.directory.shared.ldap.entry.Entry;
 import org.apache.directory.shared.ldap.entry.Modification;
 import org.apache.directory.shared.ldap.entry.ModificationOperation;
-import org.apache.directory.shared.ldap.entry.Entry;
 import org.apache.directory.shared.ldap.name.DN;
 import org.apache.directory.shared.ldap.name.RDN;
 import org.apache.directory.shared.ldap.schema.SchemaManager;
@@ -387,9 +387,19 @@ public interface Store<E, ID extends Com
     Index<?, E, ID> getSystemIndex( String id ) throws IndexNotFoundException;
 
 
+    /**
+     * Gets the entry's id. Note that the DN must be normalized!
+     * @param dn the normalized entry DN
+     * @return the entry's id
+     */
     ID getEntryId( DN dn ) throws Exception;
 
 
+    /**
+     * Gets the normalized DN of the entry identified by the given id.
+     * @param id the entry's id
+     * @return the normalized entry DN
+     */
     DN getEntryDn( ID id ) throws Exception;
 
 
@@ -404,6 +414,12 @@ public interface Store<E, ID extends Com
     ID getParentId( ID childId ) throws Exception;
 
 
+    /**
+     * Gets the total count of entries within this store.
+     *
+     * @return the total count of entries within this store
+     * @throws Exception on failures to access the underlying store
+     */
     int count() throws Exception;
 
 
@@ -444,7 +460,14 @@ public interface Store<E, ID extends Com
      */
     IndexCursor<ID, E, ID> list( ID id ) throws Exception;
 
-
+    
+    /**
+     * Gets the count of immediate children of the given entry ID.
+     *
+     * @param id the entry ID
+     * @return the child count 
+     * @throws Exception on failures to access the underlying store
+     */
     int getChildCount( ID id ) throws Exception;