Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 61134 invoked from network); 22 Jun 2007 20:13:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Jun 2007 20:13:43 -0000 Received: (qmail 4280 invoked by uid 500); 22 Jun 2007 20:13:37 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 4189 invoked by uid 500); 22 Jun 2007 20:13:37 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 4143 invoked by uid 99); 22 Jun 2007 20:13:37 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 13:13:37 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 13:13:32 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id AC3881A981A; Fri, 22 Jun 2007 13:13:11 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r549944 - in /directory/apacheds/branches/1.0/core/src: main/java/org/apache/directory/server/core/ main/java/org/apache/directory/server/core/schema/ main/java/org/apache/directory/server/core/schema/bootstrap/ test/java/org/apache/directo... Date: Fri, 22 Jun 2007 20:13:11 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070622201311.AC3881A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Fri Jun 22 13:13:10 2007 New Revision: 549944 URL: http://svn.apache.org/viewvc?view=rev&rev=549944 Log: Replaced all instances of Readible by the correct Readable syntax Modified: directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/DefaultDirectoryService.java directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/GlobalRegistries.java directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/SchemaService.java directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/AbstractBootstrapProducer.java directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/BootstrapRegistries.java directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/NisSyntaxProducer.java directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/SystemSyntaxProducer.java directory/apacheds/branches/1.0/core/src/test/java/org/apache/directory/server/core/authz/support/DummyAttributeTypeRegistry.java Modified: directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/DefaultDirectoryService.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/DefaultDirectoryService.java?view=diff&rev=549944&r1=549943&r2=549944 ============================================================================== --- directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/DefaultDirectoryService.java (original) +++ directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/DefaultDirectoryService.java Fri Jun 22 13:13:10 2007 @@ -813,7 +813,7 @@ while ( list.hasNext() ) { AttributeType type = ( AttributeType ) list.next(); - if ( !type.getSyntax().isHumanReadible() ) + if ( !type.getSyntax().isHumanReadable() ) { // add the OID for the attributeType binaries.add( type.getOid() ); Modified: directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/GlobalRegistries.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/GlobalRegistries.java?view=diff&rev=549944&r1=549943&r2=549944 ============================================================================== --- directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/GlobalRegistries.java (original) +++ directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/GlobalRegistries.java Fri Jun 22 13:13:10 2007 @@ -394,7 +394,7 @@ // try // { // String schema = attributeTypeRegistry.getSchemaName( at.getOid() ); - // if ( ! hasMatchingRule && at.getSyntax().isHumanReadible() ) + // if ( ! hasMatchingRule && at.getSyntax().isHumanReadable() ) // { // errors.add( new NullPointerException( "attributeType " // + at.getName() + " in schema " + schema + " with OID " Modified: directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/SchemaService.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/SchemaService.java?view=diff&rev=549944&r1=549943&r2=549944 ============================================================================== --- directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/SchemaService.java (original) +++ directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/SchemaService.java Fri Jun 22 13:13:10 2007 @@ -1525,7 +1525,7 @@ continue; } - asBinary = !type.getSyntax().isHumanReadible(); + asBinary = !type.getSyntax().isHumanReadable(); asBinary = asBinary || binaries.contains( type ); if ( asBinary ) @@ -1639,7 +1639,7 @@ } // Check the attributes values and transform them to String if necessary - assertHumanReadible( entry ); + assertHumanReadable( entry ); } /** @@ -1704,10 +1704,10 @@ } /** - * Check that all the attribute's values which are Human Readible can be transformed + * Check that all the attribute's values which are Human Readable can be transformed * to valid String if they are stored as byte[]. */ - private void assertHumanReadible( Attributes entry ) throws NamingException + private void assertHumanReadable( Attributes entry ) throws NamingException { NamingEnumeration attributes = entry.getAll(); boolean isEntryModified = false; @@ -1721,7 +1721,7 @@ AttributeType attributeType = globalRegistries.getAttributeTypeRegistry().lookup( attribute.getID() ); // If the attributeType is H-R, check alll of its values - if ( attributeType.getSyntax().isHumanReadible() ) + if ( attributeType.getSyntax().isHumanReadable() ) { Enumeration values = attribute.getAll(); Attribute clone = null; @@ -1763,7 +1763,7 @@ } else { - throw new NamingException( "The value stored in an Human Readible attribute is not a String" ); + throw new NamingException( "The value stored in an Human Readable attribute is not a String" ); } } @@ -1843,4 +1843,4 @@ } } } -} \ No newline at end of file +} Modified: directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/AbstractBootstrapProducer.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/AbstractBootstrapProducer.java?view=diff&rev=549944&r1=549943&r2=549944 ============================================================================== --- directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/AbstractBootstrapProducer.java (original) +++ directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/AbstractBootstrapProducer.java Fri Jun 22 13:13:10 2007 @@ -119,9 +119,9 @@ } - public void setHumanReadible( boolean isHumanReadible ) + public void setHumanReadable( boolean isHumanReadable ) { - super.setHumanReadible( isHumanReadible ); + super.setHumanReadable( isHumanReadable ); } Modified: directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/BootstrapRegistries.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/BootstrapRegistries.java?view=diff&rev=549944&r1=549943&r2=549944 ============================================================================== --- directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/BootstrapRegistries.java (original) +++ directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/BootstrapRegistries.java Fri Jun 22 13:13:10 2007 @@ -405,7 +405,7 @@ // try // { // String schema = attributeTypeRegistry.getSchemaName( at.getOid() ); - // if ( ! hasMatchingRule && at.getSyntax().isHumanReadible() ) + // if ( ! hasMatchingRule && at.getSyntax().isHumanReadable() ) // { // errors.add( new NullPointerException( "attributeType " // + at.getName() + " in schema " + schema + " with OID " Modified: directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/NisSyntaxProducer.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/NisSyntaxProducer.java?view=diff&rev=549944&r1=549943&r2=549944 ============================================================================== --- directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/NisSyntaxProducer.java (original) +++ directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/NisSyntaxProducer.java Fri Jun 22 13:13:10 2007 @@ -60,14 +60,14 @@ syntax.setDescription( "RFC2307 NIS Netgroup Triple" ); syntax.setNames( new String[] { "NIS Netgroup Triple" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); // 1.3.6.1.1.1.0.1 - RFC2307 Boot Parameter Syntax syntax = new BootstrapSyntax( "1.3.6.1.1.1.0.1", syntaxCheckerRegistry ); syntax.setNames( new String[] { "NIS Boot Parameter" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); } Modified: directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/SystemSyntaxProducer.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/SystemSyntaxProducer.java?view=diff&rev=549944&r1=549943&r2=549944 ============================================================================== --- directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/SystemSyntaxProducer.java (original) +++ directory/apacheds/branches/1.0/core/src/main/java/org/apache/directory/server/core/schema/bootstrap/SystemSyntaxProducer.java Fri Jun 22 13:13:10 2007 @@ -142,61 +142,61 @@ syntax.setNames( new String[] { "ACI Item" } ); // This is in direct conflict with RFC 2252 but for us ACI Item is human readable - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.2", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Access Point" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.3", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Attribute Type Description" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.4", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Audio" } ); - syntax.setHumanReadible( false ); + syntax.setHumanReadable( false ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.5", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Binary" } ); - syntax.setHumanReadible( false ); + syntax.setHumanReadable( false ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.6", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Bit String" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.7", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Boolean" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.8", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Certificate" } ); - syntax.setHumanReadible( false ); + syntax.setHumanReadable( false ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.9", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Certificate List" } ); - syntax.setHumanReadible( false ); + syntax.setHumanReadable( false ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.10", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Certificate Pair" } ); - syntax.setHumanReadible( false ); + syntax.setHumanReadable( false ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); /* @@ -216,61 +216,61 @@ syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.11", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Country String" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.12", syntaxCheckerRegistry ); syntax.setNames( new String[] { "DN" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.13", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Data Quality Syntax" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.14", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Delivery Method" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.15", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Directory String" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.16", syntaxCheckerRegistry ); syntax.setNames( new String[] { "DIT Content Rule Description" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.17", syntaxCheckerRegistry ); syntax.setNames( new String[] { "DIT Structure Rule Description" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.18", syntaxCheckerRegistry ); syntax.setNames( new String[] { "DL Submit Permission" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.19", syntaxCheckerRegistry ); syntax.setNames( new String[] { "DSA Quality Syntax" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.20", syntaxCheckerRegistry ); syntax.setNames( new String[] { "DSE Type" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); /* @@ -290,61 +290,61 @@ syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.21", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Enhanced Guide" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.22", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Facsimile Telephone Number" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.23", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Fax" } ); - syntax.setHumanReadible( false ); + syntax.setHumanReadable( false ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.24", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Generalized Time" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.25", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Guide" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.26", syntaxCheckerRegistry ); syntax.setNames( new String[] { "IA5 String" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.27", syntaxCheckerRegistry ); syntax.setNames( new String[] { "INTEGER" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.28", syntaxCheckerRegistry ); syntax.setNames( new String[] { "JPEG" } ); - syntax.setHumanReadible( false ); + syntax.setHumanReadable( false ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.29", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Master And Shadow Access Points" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.30", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Matching Rule Description" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); /* @@ -364,55 +364,55 @@ syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.31", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Matching Rule Use Description" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.32", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Mail Preference" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.33", syntaxCheckerRegistry ); syntax.setNames( new String[] { "MHS OR Address" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.34", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Name And Optional UID" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.35", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Name Form Description" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.36", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Numeric String" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.37", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Object Class Description" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.38", syntaxCheckerRegistry ); syntax.setNames( new String[] { "OID" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.39", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Other Mailbox" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); /* @@ -426,7 +426,7 @@ syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.40", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Octet String" } ); - syntax.setHumanReadible( false ); + syntax.setHumanReadable( false ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); /* @@ -446,61 +446,61 @@ syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.41", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Postal Address" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.42", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Protocol Information" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.43", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Presentation Address" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.44", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Printable String" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.45", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Subtree Specification" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.46", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Supplier Information" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.47", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Supplier Or Consumer" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.48", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Supplier And Consumer" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.49", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Supported Algorithm" } ); - syntax.setHumanReadible( false ); + syntax.setHumanReadable( false ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.50", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Telephone Number" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); /* @@ -518,49 +518,49 @@ syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.51", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Teletex Terminal Identifier" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.52", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Telex Number" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.53", syntaxCheckerRegistry ); syntax.setNames( new String[] { "UTC Time" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.54", syntaxCheckerRegistry ); syntax.setNames( new String[] { "LDAP Syntax Description" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.55", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Modify Rights" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.56", syntaxCheckerRegistry ); syntax.setNames( new String[] { "LDAP BootstrapSchema Definition" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.57", syntaxCheckerRegistry ); syntax.setNames( new String[] { "LDAP BootstrapSchema Description" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); syntax = new BootstrapSyntax( "1.3.6.1.4.1.1466.115.121.1.58", syntaxCheckerRegistry ); syntax.setNames( new String[] { "Substring Assertion" } ); - syntax.setHumanReadible( true ); + syntax.setHumanReadable( true ); cb.schemaObjectProduced( this, syntax.getOid(), syntax ); } } Modified: directory/apacheds/branches/1.0/core/src/test/java/org/apache/directory/server/core/authz/support/DummyAttributeTypeRegistry.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/1.0/core/src/test/java/org/apache/directory/server/core/authz/support/DummyAttributeTypeRegistry.java?view=diff&rev=549944&r1=549943&r2=549944 ============================================================================== --- directory/apacheds/branches/1.0/core/src/test/java/org/apache/directory/server/core/authz/support/DummyAttributeTypeRegistry.java (original) +++ directory/apacheds/branches/1.0/core/src/test/java/org/apache/directory/server/core/authz/support/DummyAttributeTypeRegistry.java Fri Jun 22 13:13:10 2007 @@ -246,7 +246,7 @@ return new Syntax() { - public boolean isHumanReadible() + public boolean isHumanReadable() { return true; } @@ -301,7 +301,7 @@ return new Syntax() { - public boolean isHumanReadible() + public boolean isHumanReadable() { return true; }