I have an xsd generated from a set of existing java classes and currently it successfully unmarshalls XML messages into the object as expected, however what I'd like the ability to do is where I have an existing instance of the Object have the unmarshaller simply update the fields that are contained within the message passed to it
for example (forgive any syntax errors here its just off the top of my head)
If I had an annotated class Book with numerous fields, title, author, published etc and corresponding generated xsd, alot of the fields set to being not required I'd like to be able if I received the following xml
<Book>
<title>Dummys guide to JAXB</title>
</Book>
rather than simply create an new Book instance with only the title set apply this to an existing instance as an update, so simply setting the title variable on that instance.