protected static Map<String, Object> convertJSONObjectToMap(@Nullable final JSONObject jsonObject) {
return new GenericJSONObjectMap(jsonObject);
}
protected static Map<String, String> convertJSONObjectToStringMap(@Nullable final JSONObject jsonObject) {
return new StringJSONObjectMap(jsonObject);
}