File name
Commit message
Commit date
File name
Commit message
Commit date
2023-07-03
File name
Commit message
Commit date
File name
Commit message
Commit date
2023-07-03
2023-07-03
File name
Commit message
Commit date
2023-07-03
File name
Commit message
Commit date
2023-07-03
2023-07-03
File name
Commit message
Commit date
File name
Commit message
Commit date
package itn.let.mjo.apikey.service;
import java.util.List;
/**
* api key 관리
* @since 2009.04.10
* @version 1.0
* @see
*
* <pre>
* << 개정이력(Modification Information) >>
*
* 수정일 수정자 수정내용
* ------- -------- ---------------------------
* 2009.04.10 조재영 최초 생성
* 2017.07.21 장동한 로그인인증제한 작업
*
* </pre>
*/
public interface ApiCallInfoMngService {
public List<ApiKeyVO> selectMberApiCallInfoList(ApiKeyVO apiKeyVO) throws Exception;
void insertApiCallInfo(ApiKeyVO apiKeyVO) throws Exception;
void deleteApiCallInfo(ApiKeyVO apiKeyVO) throws Exception;
//api key & api info 모두 실제 삭제
void deleteApiKeyInfoReal(ApiKeyVO apiKeyVO) throws Exception;
}