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 2010/05/31 09:04:41 UTC

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

Author: elecharny
Date: Mon May 31 07:04:41 2010
New Revision: 949672

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

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

Modified: directory/apacheds/trunk/xdbm-search/src/main/java/org/apache/directory/server/xdbm/Store.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/xdbm-search/src/main/java/org/apache/directory/server/xdbm/Store.java?rev=949672&r1=949671&r2=949672&view=diff
==============================================================================
--- directory/apacheds/trunk/xdbm-search/src/main/java/org/apache/directory/server/xdbm/Store.java (original)
+++ directory/apacheds/trunk/xdbm-search/src/main/java/org/apache/directory/server/xdbm/Store.java Mon May 31 07:04:41 2010
@@ -481,6 +481,14 @@ public interface Store<E, ID extends Com
     void modify( DN dn, ModificationOperation modOp, Entry mods ) throws Exception;
 
 
+    /**
+     * Modify an entry applying the given list of modifications.
+     *
+     * @param dn The Entry's DN
+     * @param mods The list of modifications
+     * @return The modified entry
+     * @throws Exception If the modification failed
+     */
     Entry modify( DN dn, List<Modification> mods ) throws Exception;