Package org.hibernate.annotations
Annotation Type AttributeBinderType
-
@Target(ANNOTATION_TYPE) @Retention(RUNTIME) @Incubating public @interface AttributeBinderType
Associates a user-defined annotation with anAttributeBinder
, allowing the annotation to drive some custom model binding.The user-defined annotation may be used to annotate fields and properties of entity and embeddable classes. The
AttributeBinder
will be called when the annotation is discovered by Hibernate.- See Also:
TypeBinderType
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description Class<? extends AttributeBinder<?>>
binder
-
-
-
Element Detail
-
binder
Class<? extends AttributeBinder<?>> binder
- Returns:
- a type which implements
AttributeBinder
-
-