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 ),