Annotation Type MapEventTransformerBinding
- 
@Target(ANNOTATION_TYPE) @Retention(RUNTIME) @Documented public @interface MapEventTransformerBindingSpecifies that an annotation type is aMapEventTransformerbinding type.@Inherited @MapEventTransformerBinding @Target({TYPE, METHOD, CONSTRUCTOR}) @Retention(RUNTIME) public @interface CustomerEventTransformer {}MapEventTransformer bindings are intermediate annotations that may be used to associate
MapEventTransformers with target beans.MapEventTransformer bindings are used by annotating a
MapEventTransformerFactorybean with the binding type annotations. Wherever the same annotation is used at an injection point that requires aMapEventTransformerthe corresponding factory'sMapEventTransformerFactory.create(java.lang.annotation.Annotation)method is called to produce aMapEventTransformerinstance.- Since:
 - 3.0
 - Author:
 - Jonathan Knight, Gunnar Hillert