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

cn.apiclub.captcha.text.producer.TextProducer Maven / Gradle / Ivy

The newest version!
package cn.apiclub.captcha.text.producer;


/**
 * Generate an answer for the CAPTCHA.
 * 
 * @author James Childers
 */
public interface TextProducer {

    /**
     * Generate a series of characters to be used as the answer for the CAPTCHA.
     * 
     * @return The answer for the CAPTCHA.
     */
    public String getText();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy