24 lines
525 B
Plaintext
24 lines
525 B
Plaintext
package com.securityControl.gateway.service;
|
|
|
|
import java.io.IOException;
|
|
import com.securityControl.common.core.exception.CaptchaException;
|
|
import com.securityControl.common.core.web.domain.AjaxResult;
|
|
|
|
/**
|
|
* 验证码处理
|
|
*
|
|
* @author czc
|
|
*/
|
|
public interface ValidateCodeService
|
|
{
|
|
/**
|
|
* 生成验证码
|
|
*/
|
|
public AjaxResult createCaptcha() throws IOException, CaptchaException;
|
|
|
|
/**
|
|
* 校验验证码
|
|
*/
|
|
public void checkCaptcha(String key, String value) throws CaptchaException;
|
|
}
|