You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2003/12/17 02:06:19 UTC

svn commit: rev 1444 - incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema

Author: akarasulu
Date: Tue Dec 16 17:06:19 2003
New Revision: 1444

Modified:
   incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema/OidRegistry.java   (props changed)
   incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema/OidRegistryMonitor.java   (contents, props changed)
   incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema/OidRegistryMonitorAdapter.java   (contents, props changed)
Log:
keyword substitution and cleanups

Modified: incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema/OidRegistryMonitor.java
==============================================================================
--- incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema/OidRegistryMonitor.java	(original)
+++ incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema/OidRegistryMonitor.java	Tue Dec 16 17:06:19 2003
@@ -23,7 +23,7 @@
     and wherever such third-party acknowledgments normally appear.
 
  4. The names "Eve Directory Server", "Apache Directory Project", "Apache Eve" 
-	and "Apache Software Foundation"  must not be used to endorse or promote
+    and "Apache Software Foundation"  must not be used to endorse or promote
     products derived  from this  software without  prior written
     permission. For written permission, please contact apache@apache.org.
 
@@ -78,55 +78,55 @@
      * @param a_name the name used to lookup an OID
      * @param a_oid the OID returned for the name
      */
-	void oidResolved( String a_name, String a_oid ) ;
-	
-	/**
+    void oidResolved( String a_name, String a_oid ) ;
+    
+    /**
      * Monitors when an OID is resolved successfully by using a normalized form
      * of the name.
      *  
      * @param a_name the name used to lookup an OID
-	 * @param a_normalized the normalized name that mapped to the OID
+     * @param a_normalized the normalized name that mapped to the OID
      * @param a_oid the OID returned for the name
-	 */
-	void oidResolved( String a_name, String a_normalized, String a_oid ) ;
-	
-	/**
-	 * Monitors when resolution of an OID by name fails.
-	 * 
-	 * @param a_name the name used to lookup an OID
-	 * @param a_fault the exception thrown for the failure after this call
-	 */
-	void oidResolutionFailed( String a_name, NamingException a_fault ) ;
-	
-	/**
-	 * Monitors when a name lookups fail due to the use of an unknown OID.
-	 *  
-	 * @param a_oid the OID used to lookup object names
-	 * @param a_fault the exception thrown for the failure after this call
-	 */
-	void oidDoesNotExist( String a_oid, NamingException a_fault ) ;
-	
-	/**
-	 * Monitors situations where a primary name is resolved for a OID.
-	 * 
-	 * @param a_oid the OID used for the lookup
-	 * @param a_primaryName the primary name found for the OID
-	 */
-	void nameResolved( String a_oid, String a_primaryName ) ;
-
-	/**
-	 * Monitors situations where a names are resolved for a OID.
-	 * 
-	 * @param a_oid the OID used for the lookup
-	 * @param a_names the names found for the OID
-	 */
-	void namesResolved( String a_oid, List a_names ) ;
-	
-	/**
-	 * Monitors the successful registration of a name for an OID.
-	 * 
-	 * @param a_name the one of many names registered with an OID
-	 * @param a_oid the OID to be associated with the name
-	 */
-	void registered( String a_name, String a_oid ) ;
+     */
+    void oidResolved( String a_name, String a_normalized, String a_oid ) ;
+    
+    /**
+     * Monitors when resolution of an OID by name fails.
+     * 
+     * @param a_name the name used to lookup an OID
+     * @param a_fault the exception thrown for the failure after this call
+     */
+    void oidResolutionFailed( String a_name, NamingException a_fault ) ;
+    
+    /**
+     * Monitors when a name lookups fail due to the use of an unknown OID.
+     *  
+     * @param a_oid the OID used to lookup object names
+     * @param a_fault the exception thrown for the failure after this call
+     */
+    void oidDoesNotExist( String a_oid, NamingException a_fault ) ;
+    
+    /**
+     * Monitors situations where a primary name is resolved for a OID.
+     * 
+     * @param a_oid the OID used for the lookup
+     * @param a_primaryName the primary name found for the OID
+     */
+    void nameResolved( String a_oid, String a_primaryName ) ;
+
+    /**
+     * Monitors situations where a names are resolved for a OID.
+     * 
+     * @param a_oid the OID used for the lookup
+     * @param a_names the names found for the OID
+     */
+    void namesResolved( String a_oid, List a_names ) ;
+    
+    /**
+     * Monitors the successful registration of a name for an OID.
+     * 
+     * @param a_name the one of many names registered with an OID
+     * @param a_oid the OID to be associated with the name
+     */
+    void registered( String a_name, String a_oid ) ;
 }

Modified: incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema/OidRegistryMonitorAdapter.java
==============================================================================
--- incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema/OidRegistryMonitorAdapter.java	(original)
+++ incubator/directory/ldap/trunk/eve/backend/schema/oid/api/src/java/org/apache/eve/schema/OidRegistryMonitorAdapter.java	Tue Dec 16 17:06:19 2003
@@ -23,7 +23,7 @@
     and wherever such third-party acknowledgments normally appear.
 
  4. The names "Eve Directory Server", "Apache Directory Project", "Apache Eve" 
-	and "Apache Software Foundation"  must not be used to endorse or promote
+    and "Apache Software Foundation"  must not be used to endorse or promote
     products derived  from this  software without  prior written
     permission. For written permission, please contact apache@apache.org.
 
@@ -47,14 +47,15 @@
  Apache Software Foundation, please see <http://www.apache.org/>.
 
 */
-package org.apache.eve.schema;
+package org.apache.eve.schema ;
 
-import java.util.List;
+import java.util.List ;
+
+import javax.naming.NamingException ;
 
-import javax.naming.NamingException;
 
 /**
- * $todo$ doc me
+ * An adapter for an OidRegistryMonitor.
  *
  * @author <a href="mailto:akarasulu@apache.org">Alex Karasulu</a>
  * @author $LastChangedBy$
@@ -64,78 +65,73 @@
 {
 
     /* (non-Javadoc)
-     * @see org.apache.eve.schema.OidRegistryMonitor#getOidWithOid(java.lang.String)
+     * @see org.apache.eve.schema.OidRegistryMonitor#getOidWithOid(
+     * java.lang.String)
      */
-    public void getOidWithOid(String a_a_oid)
+    public void getOidWithOid( String a_oid )
     {
-        // TODO Auto-generated method stub
-
     }
 
+    
     /* (non-Javadoc)
-     * @see org.apache.eve.schema.OidRegistryMonitor#oidResolved(java.lang.String, java.lang.String)
+     * @see org.apache.eve.schema.OidRegistryMonitor#oidResolved(
+     * java.lang.String, java.lang.String)
      */
-    public void oidResolved(String a_a_name, String a_a_oid)
+    public void oidResolved( String a_name, String a_oid )
     {
-        // TODO Auto-generated method stub
-
     }
+    
 
     /* (non-Javadoc)
-     * @see org.apache.eve.schema.OidRegistryMonitor#oidResolved(java.lang.String, java.lang.String, java.lang.String)
+     * @see org.apache.eve.schema.OidRegistryMonitor#oidResolved(
+     * java.lang.String, java.lang.String, java.lang.String)
      */
-    public void oidResolved(
-        String a_a_name,
-        String a_a_normalized,
-        String a_a_oid)
+    public void oidResolved( String a_name, String a_normalized, String a_oid )
     {
-        // TODO Auto-generated method stub
-
     }
 
+    
     /* (non-Javadoc)
-     * @see org.apache.eve.schema.OidRegistryMonitor#oidResolutionFailed(java.lang.String, javax.naming.NamingException)
+     * @see org.apache.eve.schema.OidRegistryMonitor#oidResolutionFailed(
+     * java.lang.String, javax.naming.NamingException)
      */
-    public void oidResolutionFailed(String a_a_name, NamingException a_a_fault)
+    public void oidResolutionFailed( String a_name, NamingException a_fault )
     {
-        // TODO Auto-generated method stub
-
     }
 
+    
     /* (non-Javadoc)
-     * @see org.apache.eve.schema.OidRegistryMonitor#oidDoesNotExist(java.lang.String, javax.naming.NamingException)
+     * @see org.apache.eve.schema.OidRegistryMonitor#oidDoesNotExist(
+     * java.lang.String, javax.naming.NamingException)
      */
-    public void oidDoesNotExist(String a_a_oid, NamingException a_a_fault)
+    public void oidDoesNotExist( String a_oid, NamingException a_fault )
     {
-        // TODO Auto-generated method stub
-
     }
 
+    
     /* (non-Javadoc)
-     * @see org.apache.eve.schema.OidRegistryMonitor#nameResolved(java.lang.String, java.lang.String)
+     * @see org.apache.eve.schema.OidRegistryMonitor#nameResolved(
+     * java.lang.String, java.lang.String)
      */
-    public void nameResolved(String a_a_oid, String a_name)
+    public void nameResolved( String a_oid, String a_name )
     {
-        // TODO Auto-generated method stub
-
     }
 
+    
     /* (non-Javadoc)
-     * @see org.apache.eve.schema.OidRegistryMonitor#namesResolved(java.lang.String, java.util.List)
+     * @see org.apache.eve.schema.OidRegistryMonitor#namesResolved(
+     * java.lang.String, java.util.List)
      */
-    public void namesResolved(String a_a_oid, List a_a_names)
+    public void namesResolved( String a_oid, List a_names )
     {
-        // TODO Auto-generated method stub
-
     }
 
+    
     /* (non-Javadoc)
-     * @see org.apache.eve.schema.OidRegistryMonitor#registered(java.lang.String, java.lang.String)
+     * @see org.apache.eve.schema.OidRegistryMonitor#registered(
+     * java.lang.String, java.lang.String)
      */
-    public void registered(String a_a_name, String a_a_oid)
+    public void registered( String a_name, String a_oid )
     {
-        // TODO Auto-generated method stub
-
     }
-
 }