KJB_ROOTLESS_ARRAY -> kjbrootlessarray

This commit is contained in:
cho
2026-01-10 18:58:30 +09:00
parent 8957b763ff
commit 6c43443faf
2 changed files with 5 additions and 5 deletions
@@ -980,9 +980,9 @@ public class HttpClient5AdapterServiceRest extends HttpClient5AdapterServiceSupp
if (eaiBody instanceof JSONObject) { if (eaiBody instanceof JSONObject) {
JSONObject jsonObject = (JSONObject) eaiBody; JSONObject jsonObject = (JSONObject) eaiBody;
if( jsonObject.containsKey("KJB_ROOTLESS_ARRAY") ) { if( jsonObject.containsKey("kjbrootlessarray") ) {
ContentType contentTypeObj = ContentType.create(contentType, charset); ContentType contentTypeObj = ContentType.create(contentType, charset);
JSONArray array = (JSONArray) jsonObject.get("KJB_ROOTLESS_ARRAY"); JSONArray array = (JSONArray) jsonObject.get("kjbrootlessarray");
StringEntity entity = new StringEntity(array.toJSONString(), contentTypeObj); StringEntity entity = new StringEntity(array.toJSONString(), contentTypeObj);
method.setEntity(entity); method.setEntity(entity);
return; return;
@@ -1507,7 +1507,7 @@ public class HttpClient5AdapterServiceRest extends HttpClient5AdapterServiceSupp
} else if (obj instanceof JSONArray) { } else if (obj instanceof JSONArray) {
// 배열일 경우 새로운 객체로 감싸서 반환 // 배열일 경우 새로운 객체로 감싸서 반환
JSONObject wrapper = new JSONObject(); JSONObject wrapper = new JSONObject();
wrapper.put("KJB_ROOTLESS_ARRAY", obj); wrapper.put("kjbrootlessarray", obj);
return wrapper; return wrapper;
} }
@@ -189,7 +189,7 @@ public class HttpAdapterServiceStandard extends HttpAdapterServiceSupport
Object root = JSONValue.parse(body); Object root = JSONValue.parse(body);
if( root instanceof JSONArray ) { if( root instanceof JSONArray ) {
JSONObject wrappedObject = new JSONObject(); JSONObject wrappedObject = new JSONObject();
wrappedObject.put("KJB_ROOTLESS_ARRAY", root); wrappedObject.put("kjbrootlessarray", root);
requestBytes = wrappedObject.toJSONString().getBytes(encode); requestBytes = wrappedObject.toJSONString().getBytes(encode);
} }
@@ -253,7 +253,7 @@ public class HttpAdapterServiceStandard extends HttpAdapterServiceSupport
Object root = JSONValue.parse(responseData); Object root = JSONValue.parse(responseData);
if( root instanceof JSONObject ) { if( root instanceof JSONObject ) {
JSONObject wrappedObject = (JSONObject) root; JSONObject wrappedObject = (JSONObject) root;
responseData = wrappedObject.get("KJB_ROOTLESS_ARRAY").toString(); responseData = wrappedObject.get("kjbrootlessarray").toString();
} }
}catch (Exception e) { }catch (Exception e) {