All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.kaizen4j.shiro.captcha.CaptchaEngine Maven / Gradle / Ivy

package com.github.kaizen4j.shiro.captcha;

import java.io.OutputStream;

/**
 * @author liuguowen
 */
public interface CaptchaEngine {

    /**
     * 生成验证码
     *
     * @param outputStream 输出流
     */
    void write(OutputStream outputStream);

    /**
     * 获取当前验证码文本
     *
     * @return String
     */
    String getText();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy