All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dozer.Mapping Maven / Gradle / Ivy

Go to download

Dozer is a powerful Java Bean to Java Bean mapper that recursively copies data from one object to another

There is a newer version: 5.5.1
Show newest version
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