1 package io.oasp.module.beanmapping.common.impl;
2
3 import io.oasp.module.beanmapping.common.impl.dozer.BeanMapperImplDozer;
4
5 import org.dozer.Mapper;
6
7 /**
8 * This is the implementation of {@link io.oasp.module.beanmapping.common.api.BeanMapper} using dozer {@link Mapper}.
9 *
10 * @author hohwille
11 * @deprecated - use {@link BeanMapperImplDozer} instead as this class name clashes with
12 * {@link org.dozer.DozerBeanMapper}.
13 */
14 @Deprecated
15 public class DozerBeanMapper extends BeanMapperImplDozer {
16
17 /**
18 * The constructor.
19 */
20 public DozerBeanMapper() {
21
22 super();
23 }
24
25 }