I have to write a common utility class that does following:

Input: 2 objects of the same class - old and new

Output: 1 object of the same class as Inputs, with only the fields that change - delta

Not sure if there is any existing framework out there. I would prefer to use Scala, but even Java is ok.

link|improve this question

55% accept rate
"Output: 1 object of the same class as Inputs, with only the fields that change." Can you explain that a little more? – Bhesh Gurung Dec 12 '11 at 20:59
Sure. Lets say this util is called using person1 and person2 objects of class Person. The output should be deltaPerson, also of class Person (not Object). – matroyd Dec 12 '11 at 22:29
@Roy I'm still as lost as gurung. How could the "delta" be of the same class? And what, exactly, is that delta? – Daniel C. Sobral Dec 12 '11 at 22:48
I'll take one last shot at it: Lets say this util is called using newPerson and oldPerson objects of class Person. The output should be person, also of class Person. The output person should only have fields/attributes populated from newPerson that are different than oldPerson. – matroyd Dec 12 '11 at 23:24
For a class Person (val age: Int, val name: String, val children: List[Person]), would that mean to step into the list of children, and only report different children (deep diff), or would we do a flat diff, and just report a different list? Second question: Given a diffPerson between Person a and b, where b has no children. The diffPerson will have no Children too, no matter what Person a has. Is that intendet? – user unknown Dec 13 '11 at 5:31
feedback

1 Answer

up vote 0 down vote accepted

If the objects are beans, then you can use the java.beans API. It lets you query what the fields of the bean are, via Introspector. It would be up to you to iterate over all the fields of objA and objB, comparing values, and setting values on objRes. Also, the class type would have to have a default constructor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.