Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 21779 invoked from network); 23 Dec 2010 21:58:07 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 23 Dec 2010 21:58:07 -0000 Received: (qmail 84350 invoked by uid 500); 23 Dec 2010 21:58:07 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 84307 invoked by uid 500); 23 Dec 2010 21:58:07 -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 84300 invoked by uid 99); 23 Dec 2010 21:58:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Dec 2010 21:58:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Dec 2010 21:58:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 212382388A3C; Thu, 23 Dec 2010 21:57:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1052388 - in /directory/shared/branches/alex_refactoring/ldap/src: main/antlr/ main/java/org/apache/directory/shared/ldap/util/ test/java/org/apache/directory/shared/ldap/util/ Date: Thu, 23 Dec 2010 21:57:46 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101223215746.212382388A3C@eris.apache.org> Author: akarasulu Date: Thu Dec 23 21:57:45 2010 New Revision: 1052388 URL: http://svn.apache.org/viewvc?rev=1052388&view=rev Log: moved more general non LDAP methods to shared-util Removed: directory/shared/branches/alex_refactoring/ldap/src/main/java/org/apache/directory/shared/ldap/util/DNUtils.java directory/shared/branches/alex_refactoring/ldap/src/test/java/org/apache/directory/shared/ldap/util/DNUtilsTest.java Modified: directory/shared/branches/alex_refactoring/ldap/src/main/antlr/ACIItem.g directory/shared/branches/alex_refactoring/ldap/src/main/antlr/SubtreeSpecificationChecker.g directory/shared/branches/alex_refactoring/ldap/src/main/antlr/distinguishedName.g directory/shared/branches/alex_refactoring/ldap/src/main/antlr/subtree-specification.g Modified: directory/shared/branches/alex_refactoring/ldap/src/main/antlr/ACIItem.g URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/ldap/src/main/antlr/ACIItem.g?rev=1052388&r1=1052387&r2=1052388&view=diff ============================================================================== --- directory/shared/branches/alex_refactoring/ldap/src/main/antlr/ACIItem.g (original) +++ directory/shared/branches/alex_refactoring/ldap/src/main/antlr/ACIItem.g Thu Dec 23 21:57:45 2010 @@ -42,12 +42,12 @@ import org.apache.directory.shared.ldap. import org.apache.directory.shared.ldap.name.NameComponentNormalizer; import org.apache.directory.shared.ldap.subtree.SubtreeSpecification; import org.apache.directory.shared.ldap.subtree.SubtreeSpecificationModifier; -import org.apache.directory.shared.ldap.util.ComponentsMonitor; -import org.apache.directory.shared.ldap.util.MandatoryAndOptionalComponentsMonitor; -import org.apache.directory.shared.ldap.util.MandatoryComponentsMonitor; +import org.apache.directory.shared.util.ComponentsMonitor; +import org.apache.directory.shared.util.MandatoryAndOptionalComponentsMonitor; +import org.apache.directory.shared.util.MandatoryComponentsMonitor; import org.apache.directory.shared.ldap.util.NamespaceTools; -import org.apache.directory.shared.ldap.util.NoDuplicateKeysMap; -import org.apache.directory.shared.ldap.util.OptionalComponentsMonitor; +import org.apache.directory.shared.util.NoDuplicateKeysMap; +import org.apache.directory.shared.util.OptionalComponentsMonitor; import org.apache.directory.shared.ldap.name.DN; import org.apache.directory.shared.ldap.name.RDN; import org.apache.directory.shared.ldap.schema.AttributeType; Modified: directory/shared/branches/alex_refactoring/ldap/src/main/antlr/SubtreeSpecificationChecker.g URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/ldap/src/main/antlr/SubtreeSpecificationChecker.g?rev=1052388&r1=1052387&r2=1052388&view=diff ============================================================================== --- directory/shared/branches/alex_refactoring/ldap/src/main/antlr/SubtreeSpecificationChecker.g (original) +++ directory/shared/branches/alex_refactoring/ldap/src/main/antlr/SubtreeSpecificationChecker.g Thu Dec 23 21:57:45 2010 @@ -32,8 +32,8 @@ import org.apache.directory.shared.ldap. import org.apache.directory.shared.ldap.filter.NotNode; import org.apache.directory.shared.ldap.filter.EqualityNode; import org.apache.directory.shared.ldap.filter.FilterParser; -import org.apache.directory.shared.ldap.util.ComponentsMonitor; -import org.apache.directory.shared.ldap.util.OptionalComponentsMonitor; +import org.apache.directory.shared.util.ComponentsMonitor; +import org.apache.directory.shared.util.OptionalComponentsMonitor; import org.apache.directory.shared.ldap.schema.SchemaManager; import org.slf4j.Logger; @@ -463,4 +463,4 @@ protected SAFEUTF8CHAR: FILTER : '(' ( ( '&' (SP)* (FILTER)+ ) | ( '|' (SP)* (FILTER)+ ) | ( '!' (SP)* FILTER ) | FILTER_VALUE ) ')' (SP)* ; protected FILTER_VALUE : (options{greedy=true;}: ~( ')' | '(' | '&' | '|' | '!' ) ( ~(')') )* ) ; - \ No newline at end of file + Modified: directory/shared/branches/alex_refactoring/ldap/src/main/antlr/distinguishedName.g URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/ldap/src/main/antlr/distinguishedName.g?rev=1052388&r1=1052387&r2=1052388&view=diff ============================================================================== --- directory/shared/branches/alex_refactoring/ldap/src/main/antlr/distinguishedName.g (original) +++ directory/shared/branches/alex_refactoring/ldap/src/main/antlr/distinguishedName.g Thu Dec 23 21:57:45 2010 @@ -434,7 +434,7 @@ attributeValue [UpAndNormValue value] quotestring [UpAndNormValue value] { matchedProduction( "quotestring()" ); - org.apache.directory.shared.ldap.util.ByteBuffer bb = new org.apache.directory.shared.ldap.util.ByteBuffer(); + org.apache.directory.shared.util.ByteBuffer bb = new org.apache.directory.shared.util.ByteBuffer(); byte[] bytes; } : @@ -497,7 +497,7 @@ hexstring [UpAndNormValue value] string [UpAndNormValue value] { matchedProduction( "string()" ); - org.apache.directory.shared.ldap.util.ByteBuffer bb = new org.apache.directory.shared.ldap.util.ByteBuffer(); + org.apache.directory.shared.util.ByteBuffer bb = new org.apache.directory.shared.util.ByteBuffer(); String tmp; byte[] bytes; } Modified: directory/shared/branches/alex_refactoring/ldap/src/main/antlr/subtree-specification.g URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/ldap/src/main/antlr/subtree-specification.g?rev=1052388&r1=1052387&r2=1052388&view=diff ============================================================================== --- directory/shared/branches/alex_refactoring/ldap/src/main/antlr/subtree-specification.g (original) +++ directory/shared/branches/alex_refactoring/ldap/src/main/antlr/subtree-specification.g Thu Dec 23 21:57:45 2010 @@ -44,8 +44,8 @@ import org.apache.directory.shared.ldap. import org.apache.directory.shared.ldap.subtree.SubtreeSpecificationModifier; import org.apache.directory.shared.ldap.schema.NormalizerMappingResolver; import org.apache.directory.shared.ldap.schema.normalizers.OidNormalizer; -import org.apache.directory.shared.ldap.util.ComponentsMonitor; -import org.apache.directory.shared.ldap.util.OptionalComponentsMonitor; +import org.apache.directory.shared.util.ComponentsMonitor; +import org.apache.directory.shared.util.OptionalComponentsMonitor; import org.apache.directory.shared.ldap.constants.SchemaConstants; import org.apache.directory.shared.ldap.entry.StringValue; import org.apache.directory.shared.ldap.exception.LdapException;