![JAR search and dependency download from the Maven repository](/logo.png)
org.dozer.Mapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dozer Show documentation
Show all versions of dozer Show documentation
Dozer is a powerful Java Bean to Java Bean mapper that recursively copies data from one object to another
package org.dozer;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Defines non-standard mappings on property or field levels.
* If property level is considered this annotation should be put on valid bean property getter method.
*
* @author dmitry.buzdin
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
public @interface Mapping {
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy