I need to map a property to several using Orika and am struggling to find a proper example.
Given the following classes:
public class A {
String propertyA1
String propertyB1
}
public class B {
C cInstance;
D dInstance;
String propertyB2;
}
public class C {
String propertyA2Part;
}
public class D {
String propertyA3Part;
}
Basically I'm mapping class A to class B, but along the way I need to parse propertyA1 and send value to C.propertyA2Part and D.propertyA3Part. I'm trying to determine the best facility for this between a converter / mapper / filter.