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