// check first to see if it is present in the subschemaSubentry
// -------------------------------------------------------------------
Attributes attrs = getSubschemaSubentryAttributes();
Attribute attrTypes = attrs.get( "normalizers" );
NormalizerDescription normalizerDescription = null;
for ( int i = 0; i < attrTypes.size(); i++ )
{
String desc = ( String ) attrTypes.get( i );
if ( desc.indexOf( oid ) != -1 )
{
normalizerDescription = normalizerDescriptionSchemaParser.parseNormalizerDescription( desc );
break;
}
}
if ( isPresent )
{
assertNotNull( normalizerDescription );
assertEquals( oid, normalizerDescription.getOid() );
}
else
{
assertNull( normalizerDescription );
}