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 2005/12/19 00:31:05 UTC

svn commit: r357556 - /directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/DummyOidRegistry.java

Author: elecharny
Date: Sun Dec 18 15:31:00 2005
New Revision: 357556

URL: http://svn.apache.org/viewcvs?rev=357556&view=rev
Log:
Added a toString() method

Modified:
    directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/DummyOidRegistry.java

Modified: directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/DummyOidRegistry.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/DummyOidRegistry.java?rev=357556&r1=357555&r2=357556&view=diff
==============================================================================
--- directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/DummyOidRegistry.java (original)
+++ directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/DummyOidRegistry.java Sun Dec 18 15:31:00 2005
@@ -87,4 +87,14 @@
     	return null;
     }
     
+    public String toString()
+    {
+    	return toString( "" );
+    }
+    
+    public String toString( String tabs )
+    {
+    	return tabs + "DummyOidRegistry";
+    }
+    
 }