org.loom.addons.recaptcha.RecaptchaService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of loom-addons Show documentation
Show all versions of loom-addons Show documentation
Uploads all artifacts belonging to configuration ':archives'.
The newest version!
package org.loom.addons.recaptcha;
public interface RecaptchaService {
/**
* Check a response introduced by the user to a ReCaptcha challenge
* @param remoteAddr the user IP address
* @param challenge the challenge ID provided by ReCaptcha to the user
* @param response the response introduced by the user
* @return null if the user response is correct, else return the ReCaptcha error code.
*/
public String validate(String remoteAddr, String challenge, String response);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy