API등록시 HTTP Inbound Adapter 허용. 화면 문구 수정

This commit is contained in:
Yunsam.Eo
2025-12-10 20:21:05 +09:00
parent ad3efb676d
commit 38f37adc10
2 changed files with 8 additions and 8 deletions
@@ -617,9 +617,9 @@ public class ApiInterfaceService extends OnlBaseService {
}
if (!"RST".equals(adapterGroup.getAdptrcd())) {
throw new RuntimeException("인바운드 어댑터가 타입이 REST가 아닙니다. 타입을 확인하세요");
// HTTP 어댑터도 등록 가능하도록 수정.
if (!"RST".equals(adapterGroup.getAdptrcd())&&!"HTT".equals(adapterGroup.getAdptrcd())) {
throw new RuntimeException("인바운드 어댑터가 타입이 REST/HTTP가 아닙니다. 타입을 확인하세요");
}
StandardMessageInfo standardMessageInfo = apiInterfaceUIMapper.toStandardMessageInfo(vo);