The Customizer annotation is used to specify a class that implements the
DescriptorCustomizer
interface and is to run against an entity's class descriptor after all
metadata processing has been completed.
The Customizer annotation may be defined on an Entity, MappedSuperclass or Embeddable class. In the case of inheritance, a Customizer is not inherited from its parent classes.
- Author:
- Guy Pelletier
-
Required Element Summary
Required Elements
-
Element Details
-
value
Class<?> valueDefines the name of the descriptor customizer that should be applied to this entity's descriptor.
-