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 2008/05/23 04:34:49 UTC

svn commit: r659371 - /directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/interceptor/context/ListOperationContext.java

Author: elecharny
Date: Thu May 22 19:34:49 2008
New Revision: 659371

URL: http://svn.apache.org/viewvc?rev=659371&view=rev
Log:
Updated the javadoc

Modified:
    directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/interceptor/context/ListOperationContext.java

Modified: directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/interceptor/context/ListOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/interceptor/context/ListOperationContext.java?rev=659371&r1=659370&r2=659371&view=diff
==============================================================================
--- directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/interceptor/context/ListOperationContext.java (original)
+++ directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/interceptor/context/ListOperationContext.java Thu May 22 19:34:49 2008
@@ -67,16 +67,19 @@
 
     
     /**
-     * @see Object#toString()
+     * @return the operation name
      */
-    public String toString()
+    public String getName()
     {
-        return "ListOperationContext with DN '" + getDn().getUpName() + "'";
+        return "List";
     }
+
     
-    
-    public String getName()
+    /**
+     * @see Object#toString()
+     */
+    public String toString()
     {
-        return "List";
+        return "List with DN '" + getDn().getUpName() + "'";
     }
 }