EAIMessage Object 생성부분에 eaiSvcCd 획득 수정
This commit is contained in:
@@ -121,19 +121,20 @@ public class RequestProcessor extends RequestProcessorSupport {
|
||||
String bidInterface = adptGrpVO.getBidInterface();
|
||||
String testMasterYn = adptGrpVO.getTestMasterYn();
|
||||
|
||||
// UUID 생성 : UUID = server구분4자리 + UUID
|
||||
// UUID 생성 : UUID = "-" 없는 32자리 UUID(광주은행 요청)
|
||||
String uuid = "";
|
||||
uuid = UUIDGenerator.getUUID().toString().replaceAll("-", "");
|
||||
|
||||
if(instid != null) {
|
||||
uuid = instid + UUIDGenerator.getUUID();
|
||||
if (logger.isDebug()) logger.debug("RequestProcessor] UUID ["+uuid+"]");
|
||||
}
|
||||
else {
|
||||
String rspErrorCode = "RECEAIIRP030";
|
||||
String rspErrorMsg = ErrorCodeHandler.getMessage(rspErrorCode);
|
||||
if (logger.isError()) logger.error(rspErrorMsg);
|
||||
throw new RequestProcessorException(rspErrorMsg);
|
||||
}
|
||||
// if(instid != null) {
|
||||
// uuid = instid + UUIDGenerator.getUUID();
|
||||
// if (logger.isDebug()) logger.debug("RequestProcessor] UUID ["+uuid+"]");
|
||||
// }
|
||||
// else {
|
||||
// String rspErrorCode = "RECEAIIRP030";
|
||||
// String rspErrorMsg = ErrorCodeHandler.getMessage(rspErrorCode);
|
||||
// if (logger.isError()) logger.error(rspErrorMsg);
|
||||
// throw new RequestProcessorException(rspErrorMsg);
|
||||
// }
|
||||
|
||||
ProcessVO vo = new ProcessVO();
|
||||
vo.setAdapterGroupName(adapterGroupName);
|
||||
|
||||
Reference in New Issue
Block a user