
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package com.takensoft.cms.loginPolicy.service;
import com.takensoft.cms.loginPolicy.vo.Email2ndAuthVO;
import com.takensoft.cms.loginPolicy.vo.LoginPolicyVO;
/**
* @author 하석형
* @since 2025.05.27
* @modification
* since | author | description
* 2025.05.27 | 하석형 | 최초 등록
*
* 이메일 2차 인증 관련 인터페이스
*/
public interface Email2ndAuthService {
/**
*
* @return boolean - 이메일 2차 인증 사용 여부 조회
*
* 이메일 2차 인증 조회
*/
public boolean findByEmail2ndAuth();
/**
* @param email2ndAuthVO - 이메일 2차 인증 정보
* @return int - 이메일 2차 인증 등록 결과
*
* 이메일 2차 인증 등록
*/
public int email2ndAuthSave(Email2ndAuthVO email2ndAuthVO);
}