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 2007/04/14 18:28:57 UTC

svn commit: r528830 - /directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddContextPartitionServiceContext.java

Author: elecharny
Date: Sat Apr 14 09:28:55 2007
New Revision: 528830

URL: http://svn.apache.org/viewvc?view=rev&rev=528830
Log:
Fixed the toString() method, and javadoc

Modified:
    directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddContextPartitionServiceContext.java

Modified: directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddContextPartitionServiceContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddContextPartitionServiceContext.java?view=diff&rev=528830&r1=528829&r2=528830
==============================================================================
--- directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddContextPartitionServiceContext.java (original)
+++ directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddContextPartitionServiceContext.java Sat Apr 14 09:28:55 2007
@@ -43,7 +43,7 @@
     /**
      * Creates a new instance of AddContextPartitionServiceContext.
      *
-     * @param entryDn The Entry DN to unbind
+     * @param entryDn The partition configuration to add
      */
     public AddContextPartitionServiceContext( PartitionConfiguration cfg )
     {
@@ -56,7 +56,7 @@
      */
     public String toString()
     {
-        return "AddContextPartitionServiceContext for partition context '" + getDn().getUpName() + "'";
+        return "AddContextPartitionServiceContext for partition context '" + cfg.getName() + "'";
     }
 
     /**