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 2006/01/05 10:04:24 UTC

svn commit: r366128 - /directory/branches/DN-refactoring/apacheds-shared/src/main/java/org/apache/ldap/server/schema/bootstrap/AbstractBootstrapSchema.java

Author: elecharny
Date: Thu Jan  5 01:04:19 2006
New Revision: 366128

URL: http://svn.apache.org/viewcvs?rev=366128&view=rev
Log:
Backporting DN-refactoring to this branch

Modified:
    directory/branches/DN-refactoring/apacheds-shared/src/main/java/org/apache/ldap/server/schema/bootstrap/AbstractBootstrapSchema.java

Modified: directory/branches/DN-refactoring/apacheds-shared/src/main/java/org/apache/ldap/server/schema/bootstrap/AbstractBootstrapSchema.java
URL: http://svn.apache.org/viewcvs/directory/branches/DN-refactoring/apacheds-shared/src/main/java/org/apache/ldap/server/schema/bootstrap/AbstractBootstrapSchema.java?rev=366128&r1=366127&r2=366128&view=diff
==============================================================================
--- directory/branches/DN-refactoring/apacheds-shared/src/main/java/org/apache/ldap/server/schema/bootstrap/AbstractBootstrapSchema.java (original)
+++ directory/branches/DN-refactoring/apacheds-shared/src/main/java/org/apache/ldap/server/schema/bootstrap/AbstractBootstrapSchema.java Thu Jan  5 01:04:19 2006
@@ -193,4 +193,14 @@
     {
         return schemaNameCapped + "Schema";
     }
+
+    
+    public String toString()
+    {
+    	StringBuffer sb = new StringBuffer();
+    	
+    	sb.append( this.getClass().getName() );
+    	
+    	return sb.toString();
+    }
 }