472473474475476477478
* @return the JSON marshaller. * * @throws JAXBException if there is an error creating the marshaller. */ public JSONMarshaller createJSONMarshaller() throws JAXBException { return new JSONMarshallerImpl(this, getJSONConfiguration()); }
496497498499500501502
* @return marshaller instance with JSON capabilities * @throws javax.xml.bind.JAXBException */ @Override public Marshaller createMarshaller() throws JAXBException { return new JSONMarshallerImpl(jaxbContext, getJSONConfiguration()); }
468469470471472473474
492493494495496497498