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/21 00:45:49 UTC

svn commit: r358147 - /directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/schema/OidNormalizer.java

Author: elecharny
Date: Tue Dec 20 15:45:41 2005
New Revision: 358147

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

Modified:
    directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/schema/OidNormalizer.java

Modified: directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/schema/OidNormalizer.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/schema/OidNormalizer.java?rev=358147&r1=358146&r2=358147&view=diff
==============================================================================
--- directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/schema/OidNormalizer.java (original)
+++ directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/schema/OidNormalizer.java Tue Dec 20 15:45:41 2005
@@ -81,4 +81,12 @@
 	public void setOid(String oid) {
 		this.oid = oid;
 	}
+	
+	/**
+	 * Return a String representation of this class
+	 */
+	public String toString()
+	{
+		return "OidNormalizer : { " + oid + ", " + normalizer.toString() + "}";
+	}
 }