인코딩 수정

This commit is contained in:
yunjy
2022-08-19 16:03:43 +09:00
parent b302bb75fa
commit 1e6092412b
@@ -4,9 +4,9 @@ public interface Script {
/** /**
* Script Process Function * Script Process Function
* @param requestMessage 수신 받은 요청 메시지 * @param requestMessage 수신 받은 요청 메시지
* @param responseMessage 정의된 응답 메시지 * @param responseMessage 정의된 응답 메시지
* @return 스크립트 수행 후 응답 할 메시지 * @return 스크립트 수행 후 응답 할 메시지
* @throws Exception * @throws Exception
*/ */
public String postProcess(String requestMessage, String responseMessage) throws Exception; public String postProcess(String requestMessage, String responseMessage) throws Exception;