*/
public static JSONUnmarshaller getJSONUnmarshaller(Unmarshaller unmarshaller, JAXBContext jaxbContext) {
if (unmarshaller instanceof JSONUnmarshaller) {
return (JSONUnmarshaller) unmarshaller;
} else {
return new BaseJSONUnmarshaller(unmarshaller, jaxbContext, JSONConfiguration.DEFAULT);
}
}