Class GoogleRecaptchaConfig


  • public class GoogleRecaptchaConfig
    extends java.lang.Object
    Google reCAPTCHA service configuration.
    Since:
    17.1.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double getMinimumScore()
      Returns the minimum score of the reCaptcha service.
      java.lang.String getSecretKey()
      Returns the secret key of the reCaptcha service.
      java.lang.String getServiceInstanceId()
      Returns the service instance id of the reCaptcha service.
      java.lang.String getSiteKey()
      Returns the site key of the reCaptcha service.
      boolean isEnabled()
      Returns the enabled status of the reCaptcha service.
      void setEnabled​(boolean enabled)
      Sets the enabled status of the reCaptcha service.
      void setMinimumScore​(float minimumScore)
      Sets the minimum score of the reCaptcha service.
      void setSecretKey​(java.lang.String secretKey)
      Sets the secret key of the reCaptcha service.
      void setServiceInstanceId​(java.lang.String serviceInstanceId)
      Sets the service instance id of the reCaptcha service.
      void setSiteKey​(java.lang.String rawSiteKey)
      Sets the site key of the reCaptcha service.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • GoogleRecaptchaConfig

        public GoogleRecaptchaConfig()
    • Method Detail

      • setSiteKey

        public void setSiteKey​(java.lang.String rawSiteKey)
        Sets the site key of the reCaptcha service.
        Parameters:
        siteKey - the site key
        Since:
        17.1.0
      • getServiceInstanceId

        public java.lang.String getServiceInstanceId()
        Returns the service instance id of the reCaptcha service.
        Returns:
        the service instance id
        Since:
        17.1.0
      • setServiceInstanceId

        public void setServiceInstanceId​(java.lang.String serviceInstanceId)
        Sets the service instance id of the reCaptcha service.
        Parameters:
        serviceInstanceId - the service instance id
        Since:
        17.1.0
      • setSecretKey

        public void setSecretKey​(java.lang.String secretKey)
        Sets the secret key of the reCaptcha service.
        Parameters:
        secretKey - the secret key
        Since:
        17.1.0
      • getMinimumScore

        public double getMinimumScore()
        Returns the minimum score of the reCaptcha service.
        Returns:
        the minimum score
        Since:
        17.1.0
      • setMinimumScore

        public void setMinimumScore​(float minimumScore)
        Sets the minimum score of the reCaptcha service.
        Parameters:
        minimumScore - the minimum score
        Since:
        17.1.0
      • isEnabled

        public boolean isEnabled()
        Returns the enabled status of the reCaptcha service.
        Returns:
        the enabled status
        Since:
        17.1.0
      • setEnabled

        public void setEnabled​(boolean enabled)
        Sets the enabled status of the reCaptcha service.
        Parameters:
        enabled - the enabled status
        Since:
        17.1.0