Class JsonStructureSource

  • All Implemented Interfaces:
    javax.xml.transform.Source

    public class JsonStructureSource
    extends ExtendedSource
    Object to be used with Unmarshaller to unmarshal javax.json.JsonStructure objects (ie: javax.json.JsonObject or javax.json.JsonArray) Usage: JsonStructureSource source = new JsonStructureSource(jsonObject); Object unmarshalled = jaxbUnmarshaller.unmarshal(source);