Skip to content

Regex Mapping

avurro edited this page Apr 14, 2016 · 8 revisions

under construction

class Source1{

   List<String> customersIds;

   // getter and setter...
}

class Source2{

   Set<Integer> companyIds;

   // getter and setter...
}

class Source3{

   TreeSet<String> supplierIds;

   // getter and setter...
}

As you can see the fields have different structures, JMapper handles all implicitly.

class Destination{

   List<Integer> ids;

   // getter and setter...
}
Clone this wiki locally