Author: pamarcelot Date: Fri Apr 1 07:36:29 2011 New Revision: 1087611 URL: http://svn.apache.org/viewvc?rev=1087611&view=rev Log: Updating Antlr files with new class name for DefaultAttribute. Modified: directory/shared/trunk/ldap/extras/aci/src/main/antlr/ACIItem.g Modified: directory/shared/trunk/ldap/extras/aci/src/main/antlr/ACIItem.g URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/extras/aci/src/main/antlr/ACIItem.g?rev=1087611&r1=1087610&r2=1087611&view=diff ============================================================================== --- directory/shared/trunk/ldap/extras/aci/src/main/antlr/ACIItem.g (original) +++ directory/shared/trunk/ldap/extras/aci/src/main/antlr/ACIItem.g Fri Apr 1 07:36:29 2011 @@ -56,7 +56,7 @@ import org.apache.directory.shared.ldap. import org.apache.directory.shared.ldap.model.constants.AuthenticationLevel; import org.apache.directory.shared.ldap.model.entry.StringValue; import org.apache.directory.shared.ldap.model.entry.Attribute; -import org.apache.directory.shared.ldap.model.entry.DefaultEntryAttribute; +import org.apache.directory.shared.ldap.model.entry.DefaultAttribute; import org.apache.directory.shared.ldap.model.exception.LdapException; import org.apache.directory.shared.ldap.aci.protectedItem.AllAttributeValuesItem; import org.apache.directory.shared.ldap.aci.protectedItem.AttributeTypeItem; @@ -508,7 +508,7 @@ attributeValue attributeType = DnUtils.getRdnAttributeType( attributeTypeAndValue ); attributeValue = DnUtils.getRdnValue( attributeTypeAndValue ); - attributeSet.add( new DefaultEntryAttribute( attributeType, attributeValue ) ); + attributeSet.add( new DefaultAttribute( attributeType, attributeValue ) ); log.debug( "An attributeTypeAndValue from the set: " + attributeType + "=" + attributeValue); }