* Get ahold of the normalizer for the attribute and normalize the request
* assertion value for comparisons with normalized attribute values. Loop
* through all values looking for a match.
*/
Normalizer normalizer = compareContext.getAttributeType().getEquality().getNormalizer();
Value<?> reqVal = normalizer.normalize( compareContext.getValue() );
for ( Value<?> value : attr )
{
Value<?> attrValObj = normalizer.normalize( value );