From commits-return-24272-apmail-directory-commits-archive=directory.apache.org@directory.apache.org Mon Jan 04 14:43:23 2010 Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 36975 invoked from network); 4 Jan 2010 14:43:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Jan 2010 14:43:23 -0000 Received: (qmail 14359 invoked by uid 500); 4 Jan 2010 14:43:23 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 14304 invoked by uid 500); 4 Jan 2010 14:43:23 -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 14293 invoked by uid 99); 4 Jan 2010 14:43:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jan 2010 14:43:23 +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; Mon, 04 Jan 2010 14:43:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3C5F92388906; Mon, 4 Jan 2010 14:43:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r895645 - /directory/shared/branches/shared-schema/ldap/src/main/antlr/distinguishedName.g Date: Mon, 04 Jan 2010 14:43:02 -0000 To: commits@directory.apache.org From: seelmann@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100104144302.3C5F92388906@eris.apache.org> Author: seelmann Date: Mon Jan 4 14:43:01 2010 New Revision: 895645 URL: http://svn.apache.org/viewvc?rev=895645&view=rev Log: AttributeTypeAndValue has been renamed. Modified: directory/shared/branches/shared-schema/ldap/src/main/antlr/distinguishedName.g Modified: directory/shared/branches/shared-schema/ldap/src/main/antlr/distinguishedName.g URL: http://svn.apache.org/viewvc/directory/shared/branches/shared-schema/ldap/src/main/antlr/distinguishedName.g?rev=895645&r1=895644&r2=895645&view=diff ============================================================================== --- directory/shared/branches/shared-schema/ldap/src/main/antlr/distinguishedName.g (original) +++ directory/shared/branches/shared-schema/ldap/src/main/antlr/distinguishedName.g Mon Jan 4 14:43:01 2010 @@ -298,11 +298,11 @@ try { upName += value.rawValue; - AttributeTypeAndValue ava = null; + AVA ava = null; if ( value.value instanceof String ) { - ava = new AttributeTypeAndValue( + ava = new AVA( type, type, new ClientStringValue( (String)value.value ), @@ -312,7 +312,7 @@ } else { - ava = new AttributeTypeAndValue( + ava = new AVA( type, type, new ClientBinaryValue( (byte[])value.value ),