io.oasp.module.beanmapping.common.impl.DozerBeanMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oasp4j-beanmapping Show documentation
Show all versions of oasp4j-beanmapping Show documentation
Minimal shim for bean mapping to convert between compatible Java beans (e.g. JPA entity to transfer-object and vice versa).
package io.oasp.module.beanmapping.common.impl;
import io.oasp.module.beanmapping.common.impl.dozer.BeanMapperImplDozer;
import org.dozer.Mapper;
/**
* This is the implementation of {@link io.oasp.module.beanmapping.common.api.BeanMapper} using dozer {@link Mapper}.
*
* @deprecated - use {@link BeanMapperImplDozer} instead as this class name clashes with
* {@link org.dozer.DozerBeanMapper}.
*/
@Deprecated
public class DozerBeanMapper extends BeanMapperImplDozer {
/**
* The constructor.
*/
public DozerBeanMapper() {
super();
}
}