Package lumis.service.googlerecaptcha
Class GoogleRecaptchaConfig
- java.lang.Object
-
- lumis.service.googlerecaptcha.GoogleRecaptchaConfig
-
public class GoogleRecaptchaConfig extends java.lang.Object
Google reCAPTCHA service configuration.- Since:
- 17.1.0
-
-
Constructor Summary
Constructors Constructor Description GoogleRecaptchaConfig()
-
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.
-
-
-
Method Detail
-
getSiteKey
public java.lang.String getSiteKey() throws InvalidEncryptedValueException
Returns the site key of the reCaptcha service.- Returns:
- the site key
- Throws:
InvalidEncryptedValueException
- Since:
- 17.1.0
-
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
-
getSecretKey
public java.lang.String getSecretKey() throws InvalidEncryptedValueException
Returns the secret key of the reCaptcha service.- Returns:
- the secret key
- Throws:
InvalidEncryptedValueException
- 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
-
-