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 2006/08/15 20:29:20 UTC

svn commit: r431659 - in /directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions: ComparatorDescription.java RegisteredSchemaObject.java

Author: akarasulu
Date: Tue Aug 15 11:29:19 2006
New Revision: 431659

URL: http://svn.apache.org/viewvc?rev=431659&view=rev
Log:
forgot to commit these

Modified:
    directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/ComparatorDescription.java
    directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/RegisteredSchemaObject.java

Modified: directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/ComparatorDescription.java
URL: http://svn.apache.org/viewvc/directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/ComparatorDescription.java?rev=431659&r1=431658&r2=431659&view=diff
==============================================================================
--- directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/ComparatorDescription.java (original)
+++ directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/ComparatorDescription.java Tue Aug 15 11:29:19 2006
@@ -29,5 +29,12 @@
  */
 public interface ComparatorDescription extends SchemaObject, Comparator
 {
-    String getMatchingRuleDescriptionOid();
+    /**
+     * Get's the numeric OID for the matchingRuleDescription associated with 
+     * this ComparatorDescription.
+     * 
+     * @return the numeric OID of the matchingRuleDescription associated with 
+     * this ComparatorDescription
+     */
+    String getMatchingRuleDescriptionNumericOid();
 }

Modified: directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/RegisteredSchemaObject.java
URL: http://svn.apache.org/viewvc/directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/RegisteredSchemaObject.java?rev=431659&r1=431658&r2=431659&view=diff
==============================================================================
--- directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/RegisteredSchemaObject.java (original)
+++ directory/sandbox/akarasulu/apacheds-2.0/schema/descriptions/src/main/java/org/apache/directory/server2/schema/descriptions/RegisteredSchemaObject.java Tue Aug 15 11:29:19 2006
@@ -27,8 +27,8 @@
 {
     /**
      * Gets usually what is the numeric object identifier assigned to this
-     * RegisteredSchemaObject. All schema objects except for MatchingRuleUses 
-     * have an OID assigned specifically to them. A MatchingRuleUse's OID really
+     * RegisteredSchemaObject.  All schema objects except for MatchingRuleUses 
+     * have an OID assigned specifically to them.  A MatchingRuleUse's OID really
      * is the OID of its MatchingRule and not specific to the MatchingRuleUse.
      * Hence MatchingRuleUse objects do not extend this interface. 
      *