refactor: rename biz/other to biz/oth
Some checks failed
Deploy to OCIWP / deploy (push) Has been cancelled

This commit is contained in:
jade
2026-07-25 01:43:47 +09:00
parent 92fe2399be
commit e58c004d9d
9 changed files with 21 additions and 21 deletions

View File

@@ -53,7 +53,7 @@ public class DynamicMcpServerManager {
getOrCreateServer("payment");
getOrCreateServer("sms");
getOrCreateServer("email");
getOrCreateServer("other");
getOrCreateServer("oth");
getOrCreateServer("sample");
}

View File

@@ -29,7 +29,7 @@ import org.springframework.beans.factory.annotation.Value;
*/
@Slf4j
@RequiredArgsConstructor
@McpTool(routingType = "MCI", categoryKey = "other") // MCP Tool 등록 어노테이션
@McpTool(routingType = "MCI", categoryKey = "oth") // MCP Tool 등록 어노테이션
public class SampleMciToolUseCaseImpl implements SampleMciToolUseCase {
// EIMS/MCI 발송을 담당하는 Sender 주입

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.biz.other.dto;
package io.shinhanlife.dap.mcc.biz.oth.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.biz.other.io;
package io.shinhanlife.dap.mcc.biz.oth.io;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.biz.other.io;
package io.shinhanlife.dap.mcc.biz.oth.io;
import lombok.Data;

View File

@@ -1,9 +1,9 @@
package io.shinhanlife.dap.mcc.biz.other.io;
package io.shinhanlife.dap.mcc.biz.oth.io;
import io.shinhanlife.dap.mcc.biz.other.io.CLCNNB00001_I;
import io.shinhanlife.dap.mcc.biz.other.io.CLCNNB00001_O;
import io.shinhanlife.dap.mcc.biz.oth.io.CLCNNB00001_I;
import io.shinhanlife.dap.mcc.biz.oth.io.CLCNNB00001_O;
import io.shinhanlife.dap.lib.integration.mci.component.AxhubMciComponent;
import io.shinhanlife.dap.mcc.biz.other.dto.Onnba3011Request;
import io.shinhanlife.dap.mcc.biz.oth.dto.Onnba3011Request;
import io.shinhanlife.glow.communication.dto.Transfer;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;

View File

@@ -0,0 +1,7 @@
package io.shinhanlife.dap.mcc.biz.oth.usecase;
import io.shinhanlife.dap.mcc.biz.oth.dto.*;
public interface OnnbaMciToolUseCase {
Object callOnnba3011(Onnba3011Request req);
}

View File

@@ -1,11 +1,11 @@
package io.shinhanlife.dap.mcc.biz.other.usecase.impl;
package io.shinhanlife.dap.mcc.biz.oth.usecase.impl;
import io.shinhanlife.dap.mcc.biz.other.io.MciCfpaClient;
import io.shinhanlife.dap.mcc.biz.oth.io.MciCfpaClient;
import io.shinhanlife.dap.lib.annotation.McpFunction;
import io.shinhanlife.dap.lib.annotation.McpTool;
import io.shinhanlife.dap.mcc.biz.other.usecase.OnnbaMciToolUseCase;
import io.shinhanlife.dap.mcc.biz.oth.usecase.OnnbaMciToolUseCase;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import io.shinhanlife.dap.mcc.biz.other.dto.Onnba3011Request;
import io.shinhanlife.dap.mcc.biz.oth.dto.Onnba3011Request;
import io.shinhanlife.glow.communication.dto.Transfer;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
@@ -28,7 +28,7 @@ import org.springframework.stereotype.Service;
@Slf4j
@Service
@RequiredArgsConstructor
@McpTool(routingType = "MCI", categoryKey = "other")
@McpTool(routingType = "MCI", categoryKey = "oth")
public class OnnbaMciToolUseCaseImpl implements OnnbaMciToolUseCase {
private static final String INTERFACE_CODE_3011 = "CLCNNB00001";

View File

@@ -1,7 +0,0 @@
package io.shinhanlife.dap.mcc.biz.other.usecase;
import io.shinhanlife.dap.mcc.biz.other.dto.*;
public interface OnnbaMciToolUseCase {
Object callOnnba3011(Onnba3011Request req);
}