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

io.nixer.nixerplugin.captcha.CaptchaService Maven / Gradle / Ivy

There is a newer version: 0.1.1.3
Show newest version
package io.nixer.nixerplugin.captcha;

import io.nixer.nixerplugin.captcha.error.CaptchaException;

/**
 * Allows to verify correctness of captcha response.
 *
 */
public interface CaptchaService {

    /** Verifies captcha response
     *
     * @param captcha captcha response supplied by user.
     * @throws CaptchaException if incorrect captcha was supplied or verification failed.
     */
    void verifyResponse(final String captcha) throws CaptchaException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy