com.bsmoot.service.ReCaptchaService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-recaptcha-lib Show documentation
Show all versions of rest-recaptcha-lib Show documentation
This is the library module of the Rest Recaptcha project for Spring Boot.
The newest version!
package com.bsmoot.service;
import com.bsmoot.exceptions.ReCaptchaException;
/**
* This interface define ReCaptcha Service contract
* @author Nadav Bsimuth
*/
public interface ReCaptchaService {
ReCaptchaResponse validate(String reCaptchaResponse, String remoteIp) throws ReCaptchaException;
}