Class JsonXMLMapper<T>
java.lang.Object
org.apache.synapse.commons.staxon.core.json.jaxb.JsonXMLMapper<T>
Read/write instances of JAXB-annotated classes from/to JSON.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected JsonXMLBindercreateBinder(JsonXML config) protected jakarta.xml.bind.JAXBContextcreateContext(JsonXML config) readArray(InputStream input) readObject(InputStream input) readObject(Reader reader) voidwriteArray(OutputStream output, Collection<T> collection) voidwriteArray(Writer writer, Collection<T> collection) voidwriteObject(OutputStream output, T value) voidwriteObject(Writer writer, T value)
-
Constructor Details
-
JsonXMLMapper
- Throws:
jakarta.xml.bind.JAXBException
-
JsonXMLMapper
- Throws:
jakarta.xml.bind.JAXBException
-
-
Method Details
-
createBinder
-
createContext
protected jakarta.xml.bind.JAXBContext createContext(JsonXML config) throws jakarta.xml.bind.JAXBException - Throws:
jakarta.xml.bind.JAXBException
-
readObject
- Throws:
jakarta.xml.bind.JAXBExceptionXMLStreamException
-
readObject
- Throws:
jakarta.xml.bind.JAXBExceptionXMLStreamException
-
writeObject
public void writeObject(Writer writer, T value) throws jakarta.xml.bind.JAXBException, XMLStreamException - Throws:
jakarta.xml.bind.JAXBExceptionXMLStreamException
-
writeObject
public void writeObject(OutputStream output, T value) throws jakarta.xml.bind.JAXBException, XMLStreamException - Throws:
jakarta.xml.bind.JAXBExceptionXMLStreamException
-
readArray
- Throws:
jakarta.xml.bind.JAXBExceptionXMLStreamException
-
readArray
public List<T> readArray(InputStream input) throws jakarta.xml.bind.JAXBException, XMLStreamException - Throws:
jakarta.xml.bind.JAXBExceptionXMLStreamException
-
writeArray
public void writeArray(Writer writer, Collection<T> collection) throws jakarta.xml.bind.JAXBException, XMLStreamException - Throws:
jakarta.xml.bind.JAXBExceptionXMLStreamException
-
writeArray
public void writeArray(OutputStream output, Collection<T> collection) throws jakarta.xml.bind.JAXBException, XMLStreamException - Throws:
jakarta.xml.bind.JAXBExceptionXMLStreamException
-