I am wondering if it is possible to have JAXB not to create Java object for XML elements that serve as wrappers. For example, for XML of the following structure
<root>
<wrapper>
<entity/>
</wrapper>
</root>
I do not want an object for <wrapper>
to be created at all. So for a class like
class Root {
private Entity entity;
}
the <entity>
element should be unmarshalled directly into the entity field.
Is it possible to achieve with JAXB?