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;