You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by fe...@apache.org on 2010/05/17 01:10:15 UTC

svn commit: r944936 [2/2] - in /directory/shared/trunk: ./ ldap-ldif/src/main/java/org/apache/directory/shared/ldap/ldif/ ldap/src/main/java/org/apache/directory/shared/ldap/aci/ ldap/src/main/java/org/apache/directory/shared/ldap/codec/add/ ldap/src/m...

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/OidRegistry.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/OidRegistry.java?rev=944936&r1=944935&r2=944936&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/OidRegistry.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/OidRegistry.java Sun May 16 23:10:13 2010
@@ -174,8 +174,7 @@ public class OidRegistry implements Iter
     /**
      * Adds an OID name pair to the registry.
      * 
-     * @param type The SchemaObjectType the oid belongs to
-     * @param oid the OID to add or associate a new name with
+     * @param schemaObject The SchemaObject the oid belongs to
      */
     public void register( SchemaObject schemaObject ) throws LdapException
     {

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/Registries.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/Registries.java?rev=944936&r1=944935&r2=944936&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/Registries.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/Registries.java Sun May 16 23:10:13 2010
@@ -140,7 +140,7 @@ public class Registries implements Schem
     /**
      * Creates a new instance of Registries.
      *
-     * @param oidRegistry the OID registry
+     * @param schemaManager the schema manager
      */
     public Registries( SchemaManager schemaManager )
     {
@@ -2686,7 +2686,7 @@ public class Registries implements Schem
     /**
      * Change the Registries behavior regarding disabled SchemaObject element.
      *
-     * @param acceptDisabled If <code>false</code>, then the Registries won't accept
+     * @param disabledAccepted If <code>false</code>, then the Registries won't accept
      * disabled SchemaObject or enabled SchemaObject from disabled schema 
      */
     public void setDisabledAccepted( boolean disabledAccepted )

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/Schema.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/Schema.java?rev=944936&r1=944935&r2=944936&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/Schema.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/Schema.java Sun May 16 23:10:13 2010
@@ -90,7 +90,7 @@ public interface Schema
     /**
      * Add a set of dependencies this schema uses.
      *
-     * @param strings The dependencies to add
+     * @param dependencies The dependencies to add
      */
     void addDependencies( String... dependencies );
     

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/SchemaLoader.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/SchemaLoader.java?rev=944936&r1=944935&r2=944936&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/SchemaLoader.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/SchemaLoader.java Sun May 16 23:10:13 2010
@@ -51,7 +51,7 @@ public interface SchemaLoader
     Schema getSchema( String schemaName );
 
 
-    /**
+    /*
      * Loads a set of schemas.  A best effort should be made to load the dependended 
      * schemas that these schemas may rely on even if they are not included in the collection.
      * 
@@ -84,7 +84,7 @@ public interface SchemaLoader
      * @throws Exception if any kind of problems are encountered during the load
      *
     void load( Schema schema, Registries registries, boolean isDepLoad ) throws Exception;
-    
+    */
     
     /**
      * Build a list of AttributeTypes read from the underlying storage for
@@ -143,7 +143,7 @@ public interface SchemaLoader
      * @param schemaNames the schema names from which DitContentRules are loaded
      * @throws Exception if there are failures accessing DitContentRule information
      */
-    List<Entry> loadDitContentRules( String... schemanames ) throws Exception;
+    List<Entry> loadDitContentRules( String... schemaNames ) throws Exception;
 
 
     /**
@@ -163,7 +163,7 @@ public interface SchemaLoader
      * @param schemaNames the schema names from which DitStructureRules are loaded
      * @throws Exception if there are failures accessing DitStructureRule information
      */
-    List<Entry> loadDitStructureRules( String... schemanames ) throws Exception;
+    List<Entry> loadDitStructureRules( String... schemaNames ) throws Exception;
 
 
     /**
@@ -203,7 +203,7 @@ public interface SchemaLoader
      * @param schemaNames the schema names from which MatchingRuleUses are loaded
      * @throws Exception if there are failures accessing MatchingRuleUses information
      */
-    List<Entry> loadMatchingRuleUses( String... schemanames ) throws Exception;
+    List<Entry> loadMatchingRuleUses( String... schemaNames ) throws Exception;
 
 
     /**
@@ -223,7 +223,7 @@ public interface SchemaLoader
      * @param schemaNames the schema names from which NameForms are loaded
      * @throws Exception if there are failures accessing NameForms information
      */
-    List<Entry> loadNameForms( String... schemanames ) throws Exception;
+    List<Entry> loadNameForms( String... schemaNames ) throws Exception;
 
 
     /**
@@ -303,7 +303,7 @@ public interface SchemaLoader
      * @param schemaNames the schema names from which SyntaxCheckers are loaded
      * @throws Exception if there are failures accessing SyntaxChecker information
      */
-    List<Entry> loadSyntaxCheckers( String... schemanames ) throws Exception;
+    List<Entry> loadSyntaxCheckers( String... schemaNames ) throws Exception;
 
 
     /**

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/SchemaObjectRegistry.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/SchemaObjectRegistry.java?rev=944936&r1=944935&r2=944936&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/SchemaObjectRegistry.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/registries/SchemaObjectRegistry.java Sun May 16 23:10:13 2010
@@ -49,7 +49,7 @@ public interface SchemaObjectRegistry<T 
     /**
      * Gets the name of the schema this schema object is associated with.
      *
-     * @param id the object identifier or the name
+     * @param oid the object identifier or the name
      * @return the schema name
      * @throws LdapException if the schema object does not exist
      */
@@ -124,7 +124,7 @@ public interface SchemaObjectRegistry<T 
     /**
      * Removes the SchemaObject registered with this registry.
      * 
-     * @param T the schemaObject to unregister
+     * @param schemaObject the schemaObject to unregister
      * @throws LdapException if the schemaObject can't be unregistered is invalid
      */
     T unregister( T schemaObject ) throws LdapException;

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/AttributeUtils.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/AttributeUtils.java?rev=944936&r1=944935&r2=944936&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/AttributeUtils.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/AttributeUtils.java Sun May 16 23:10:13 2010
@@ -853,7 +853,6 @@ public class AttributeUtils
      *
      * @param str The OID to parse
      * @param pos The current position in the string
-     * @return A valid OID
      * @throws ParseException If we don't have a valid OID
      */
     public static void parseOID( String str, Position pos ) throws ParseException
@@ -1067,7 +1066,7 @@ public class AttributeUtils
     }
 
 
-    /**
+    /*
      * Check if an attribute contains a specific value and remove it using the associated
      * matchingRule for the attribute type supplied.
      *
@@ -1189,13 +1188,13 @@ public class AttributeUtils
 
         return null;
     }
+    */
 
 
     /**
      * Convert a BasicAttributes or a AttributesImpl to a ServerEntry
      *
      * @param attributes the BasicAttributes or AttributesImpl instance to convert
-     * @param registries The registries, needed ro build a ServerEntry
      * @param dn The DN which is needed by the ServerEntry 
      * @return An instance of a ServerEntry object
      * 
@@ -1296,7 +1295,6 @@ public class AttributeUtils
      * Convert a BasicAttribute or a AttributeImpl to a EntryAttribute
      *
      * @param attribute the BasicAttributes or AttributesImpl instance to convert
-     * @param attributeType
      * @return An instance of a ClientEntry object
      * 
      * @throws InvalidAttributeIdentifierException If we had an incorrect attribute

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/Base64.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/Base64.java?rev=944936&r1=944935&r2=944936&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/Base64.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/Base64.java Sun May 16 23:10:13 2010
@@ -87,7 +87,7 @@ public class Base64
      * than throwing an error. It does this by pre-parsing the input and
      * generating from that a count of VALID input characters.
      * 
-     * @param a_data
+     * @param data
      *            data to decode.
      * @return the decoded binary data.
      */

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/GeneralizedTime.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/GeneralizedTime.java?rev=944936&r1=944935&r2=944936&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/GeneralizedTime.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/util/GeneralizedTime.java Sun May 16 23:10:13 2010
@@ -583,7 +583,7 @@ public class GeneralizedTime implements 
      * 
      * @param format the target format
      * @param fractionDelimiter the target fraction delimiter, may be null
-     * @param fractionLenth the fraction length
+     * @param fractionLength the fraction length
      * @param timeZoneFormat the target time zone format
      * 
      * @return the string

Modified: directory/shared/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/pom.xml?rev=944936&r1=944935&r2=944936&view=diff
==============================================================================
--- directory/shared/trunk/pom.xml (original)
+++ directory/shared/trunk/pom.xml Sun May 16 23:10:13 2010
@@ -249,6 +249,14 @@
           <minmemory>512m</minmemory>
           <maxmemory>1g</maxmemory>
           <linksource>true</linksource>
+          <tags>
+            <tag>
+              <name>todo</name>
+              <!-- todo tag for all places -->
+              <placement>a</placement>
+              <head>To do:</head>
+            </tag>
+          </tags>
         </configuration>
         <reportSets>
           <reportSet>