Annotation Type PropertyMapping
-
@Documented @Target(ANNOTATION_TYPE) @Retention(RUNTIME) public @interface PropertyMapping
Meta-annotation for annotations that apply mapping to a property.Whenever an annotation meta-annotated with
PropertyMapping
is found on a type in the domain model, the corresponding annotation processor will be retrieved and applied to that property. The processor will be passed the annotation instance through itsPropertyMappingAnnotationProcessor.process(PropertyMappingStep, Annotation, PropertyMappingAnnotationProcessorContext)
method.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description PropertyMappingAnnotationProcessorRef
processor
-
-
-
Element Detail
-
processor
PropertyMappingAnnotationProcessorRef processor
- Returns:
- A reference to the processor to use for the target annotation.
- See Also:
PropertyMappingAnnotationProcessorRef
-
-