// -------------------------------------------------------------------
// get the subschemaSubentry again
updateSSSE();
Attribute attrTypes = subschemaSubentry.get( "normalizers" );
NormalizerDescription normalizerDescription = null;
for ( Value<?> value : attrTypes )
{
String desc = value.getString();
if ( desc.indexOf( oid ) != -1 )
{
normalizerDescription = normalizerDescriptionSchemaParser.parseNormalizerDescription( desc );
break;
}
}
if ( isPresent )
{
assertNotNull( normalizerDescription );
assertEquals( oid, normalizerDescription.getOid() );
}
else
{
assertNull( normalizerDescription );
}