cn.hutool.captcha.generator.CodeGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.captcha.generator;
import java.io.Serializable;
/**
* 验证码文字生成器
*
* @author looly
* @since 4.1.2
*/
public interface CodeGenerator extends Serializable{
/**
* 生成验证码
*
* @return 验证码
*/
String generate();
/**
* 验证用户输入的字符串是否与生成的验证码匹配
* 用户通过实现此方法定义验证码匹配方式
*
* @param code 生成的随机验证码
* @param userInputCode 用户输入的验证码
* @return 是否验证通过
*/
boolean verify(String code, String userInputCode);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy