Hardy Ferentschik commented on an issue
Hibernate Search / Bug HSEARCH-1400
AppliedOnTypeAwareBridge is not applied to class bridges
According to HSEARCH-618 and the JavaDoc on {{AppliedOnTypeAwareBridge}}, {{setType()}} should also be called for class-level bridges, which isn't true, as it is only called for field bridges.

I assume this would have to be done in this {{BridgeFactory}} method:
{code}
public static FieldBridge extractType(ClassBridge cb, XClass clazz) { ...}
{code}