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