Package org.hibernate.binder
This package defines an easy way to extend Hibernate with user-defined
annotations that define customized O/R mappings of annotated entities
and annotated entity attributes.
- The meta-annotation
@TypeBinderType
associates aTypeBinder
with a user-written annotation which targets entity and embeddable types. - The meta-annotation
@AttributeBinderType
associates anAttributeBinder
with a user-written annotation which targets fields and properties of entity types and embeddable classes.
- See Also:
AttributeBinder
,TypeBinder
-
Interface Summary Interface Description AttributeBinder<A extends Annotation> Allows a user-written annotation to drive some customized model binding.TypeBinder<A extends Annotation> Allows a user-written annotation to drive some customized model binding.