3.4.5.2. @Any
The
@Any annotation defines a polymorphic association to classes from multiple tables. This type of mapping always requires more than one column. The first column holds the type of the associated entity. The remaining columns hold the identifier. It is impossible to specify a foreign key constraint for this kind of association, so this is most certainly not meant as the usual way of mapping (polymorphic) associations. You should use this only in very special cases (eg. audit logs, user session data, etc).
The @Any annotation describes the column holding the metadata information. To link the value of the metadata information and an actual entity type, The
@AnyDef and @AnyDefs annotations are used.
idType represents the target entities identifier property type and metaType the metadata type (usually String).
Note that
@AnyDef can be mutualized and reused. It is recommended to place it as a package metadata in this case.