I am using dozer to map my DTO objects from domain objects. How can map the result of a getter method from the domain object to a filed in the destination Object
Class Domain{
public boolean getSomethig() {
return somebooleanValue;
}
}
Class Destination{
private boolean flag;
public void setFlag(final boolean flag){
this.flag = flag;
}
public void getFlag(){
return this.flag;
}