diff --git a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/LicoMciComponent.java b/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/AxhubMciComponent.java similarity index 84% rename from dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/LicoMciComponent.java rename to dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/AxhubMciComponent.java index 4953991..67125a5 100644 --- a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/LicoMciComponent.java +++ b/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/AxhubMciComponent.java @@ -12,12 +12,12 @@ import org.springframework.stereotype.Component; @Slf4j @Component @RequiredArgsConstructor -public class LicoMciComponent { +public class AxhubMciComponent { private final GlowMciComponent mci; public Transfer callTo(String itrfName, String rcvSvcId, I inputDto, Class resBodyClass) { - log.info("[LicoMciComponent] MCI 호출 준비 - 인터페이스: {}", itrfName); + log.info("[AxhubMciComponent] MCI 호출 준비 - 인터페이스: {}", itrfName); // Header 세팅 로직 생략 (Mock) @@ -31,7 +31,7 @@ public class LicoMciComponent { @SuppressWarnings("unchecked") private Transfer syncMci(Transfer request) { - log.info("[LicoMciComponent] GlowMciComponent.sync() 호출"); + log.info("[AxhubMciComponent] GlowMciComponent.sync() 호출"); return (Transfer) mci.sync(request); } } diff --git a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/service/OnnbaMciToolService.java b/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/service/OnnbaMciToolService.java index 3c957ca..abdf0d6 100644 --- a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/service/OnnbaMciToolService.java +++ b/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/service/OnnbaMciToolService.java @@ -1,6 +1,6 @@ package io.shinhanlife.dap.mcc.service; -import io.shinhanlife.dap.mcc.component.LicoMciComponent; +import io.shinhanlife.dap.mcc.component.AxhubMciComponent; import io.shinhanlife.glow.communication.dto.Transfer; import org.springframework.stereotype.Service; import io.shinhanlife.dap.mcc.annotation.McpFunction; @@ -31,8 +31,8 @@ public class OnnbaMciToolService { private static final String INTERFACE_CODE_3011 = "CLCNNB00001"; - // Glow 기반의 LicoMciComponent 주입 - private final LicoMciComponent mci; + // Glow 기반의 AxhubMciComponent 주입 + private final AxhubMciComponent mci; /** * AI Agent가 호출하게 될 메서드입니다.