Newer
Older
newfiber_standard_algae / newfiber-gateway / src / main / java / com / newfiber / gateway / service / ValidateCodeService.java
@xiongkai xiongkai on 17 Jun 442 bytes 初始化
package com.newfiber.gateway.service;

import com.newfiber.common.core.exception.CaptchaException;
import java.io.IOException;

/**
 * 验证码处理
 *
 * @author newfiber
 */
public interface ValidateCodeService{
    /**
     * 生成验证码
     */
    Object createCaptcha() throws IOException, CaptchaException;

    /**
     * 校验验证码
     */
    public void checkCaptcha(String key, String value) throws CaptchaException;
}