cn.apiclub.captcha.text.producer.NumbersAnswerProducer Maven / Gradle / Ivy
The newest version!
package cn.apiclub.captcha.text.producer;
/**
* TextProducer implementation that will return a series of numbers.
*
* @author James Childers
*
*/
public class NumbersAnswerProducer implements TextProducer {
private static final int DEFAULT_LENGTH = 5;
private static final char[] NUMBERS = { '0', '1', '2', '3', '4', '5', '6', '7',
'8', '9' };
private final TextProducer _txtProd;
public NumbersAnswerProducer() {
this(DEFAULT_LENGTH);
}
public NumbersAnswerProducer(int length) {
_txtProd = new DefaultTextProducer(length, NUMBERS);
}
@Override public String getText() {
return new StringBuffer(_txtProd.getText()).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy