Provides Java to XML binding.
XmlOutputStream out = ...
TypeInfo info = ...
TypeMapper mapper = new TypeMapper();
mapper.writeObject(out, info, value, isSet);
XmlInputStream in = ...
TypeInfo info = ...
Class expectedType = ...
TypeMapper mapper = new TypeMapper();
Object object = mapper.readObject(in, info, expectedType);