added dozer tutorial maven project

This commit is contained in:
egimaben
2016-07-29 02:46:59 +03:00
parent 12e8296e65
commit 24dba2108a
16 changed files with 748 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package com.baeldung.dozer;
public class Dest {
private String name;
private int age;
public Dest() {
}
public Dest(String name, int age) {
super();
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}