From c90654bd1b8b51f10199b6c7c89e2d611b1d3313 Mon Sep 17 00:00:00 2001 From: jade Date: Tue, 21 Jul 2026 17:07:02 +0900 Subject: [PATCH] refactor: move AxhubMciComponent and GlowMockConfig to core module for common usage --- .../common/integration/mci}/component/AxhubMciComponent.java | 2 +- .../dap/common/integration/mci/config}/GlowMockConfig.java | 2 +- .../io/shinhanlife/dap/mcc/service/OnnbaMciToolService.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename {dap-tool-other/src/main/java/io/shinhanlife/dap/mcc => dap-tool-core/src/main/java/io/shinhanlife/dap/common/integration/mci}/component/AxhubMciComponent.java (95%) rename {dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component => dap-tool-core/src/main/java/io/shinhanlife/dap/common/integration/mci/config}/GlowMockConfig.java (90%) diff --git a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/AxhubMciComponent.java b/dap-tool-core/src/main/java/io/shinhanlife/dap/common/integration/mci/component/AxhubMciComponent.java similarity index 95% rename from dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/AxhubMciComponent.java rename to dap-tool-core/src/main/java/io/shinhanlife/dap/common/integration/mci/component/AxhubMciComponent.java index fcbc7bd..34bbf10 100644 --- a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/AxhubMciComponent.java +++ b/dap-tool-core/src/main/java/io/shinhanlife/dap/common/integration/mci/component/AxhubMciComponent.java @@ -1,4 +1,4 @@ -package io.shinhanlife.dap.mcc.component; +package io.shinhanlife.dap.common.integration.mci.component; import io.shinhanlife.glow.communication.dto.Transfer; import io.shinhanlife.glow.communication.module.mci.component.GlowMciComponent; diff --git a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/GlowMockConfig.java b/dap-tool-core/src/main/java/io/shinhanlife/dap/common/integration/mci/config/GlowMockConfig.java similarity index 90% rename from dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/GlowMockConfig.java rename to dap-tool-core/src/main/java/io/shinhanlife/dap/common/integration/mci/config/GlowMockConfig.java index 82e55dc..ad56d20 100644 --- a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/component/GlowMockConfig.java +++ b/dap-tool-core/src/main/java/io/shinhanlife/dap/common/integration/mci/config/GlowMockConfig.java @@ -1,4 +1,4 @@ -package io.shinhanlife.dap.mcc.component; +package io.shinhanlife.dap.common.integration.mci.config; import io.shinhanlife.glow.communication.module.mci.component.GlowMciComponent; import org.springframework.context.annotation.Bean; 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 abdf0d6..4ce28c1 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.AxhubMciComponent; +import io.shinhanlife.dap.common.integration.mci.component.AxhubMciComponent; import io.shinhanlife.glow.communication.dto.Transfer; import org.springframework.stereotype.Service; import io.shinhanlife.dap.mcc.annotation.McpFunction;