Attribute attr = compareContext.getOriginalEntry().get( compareContext.getAttributeType() );
// complain if the attribute being compared does not exist in the entry
if ( attr == null )
{
throw new LdapNoSuchAttributeException();
}
// see first if simple match without normalization succeeds
if ( attr.contains( compareContext.getValue() ) )
{