GW 클라이언트 해지 처리 로직 추가 - BLOCK/DELETE 처리방식 지원
- APP 승인 시 GW 처리방식 설정 기능 추가 및 상세 표시 - DELETE 요청 처리 중 클라이언트 상태 동기화 로직 개선 - JSP에 GW 처리방식 선택 UI 및 승인 결과 표시 추가
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.eactive.apim.portal.apprequest.entity;
|
||||
|
||||
/**
|
||||
* API 이용해지(DELETE) 승인 시 게이트웨이 클라이언트(TSEAIAU01) 처리 방식.
|
||||
* 승인 시점에 관리자가 선택하며 PTL_APP_REQUEST.GW_ACTION 에 영속화된다.
|
||||
* null(미지정)은 BLOCK 과 동일하게 처리한다.
|
||||
*/
|
||||
public enum GwAction {
|
||||
BLOCK("차단"),
|
||||
DELETE("완전삭제");
|
||||
|
||||
private final String description;
|
||||
|
||||
GwAction(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user