Package org.cyclos.entities.system
Class CaptchaConfiguration
- java.lang.Object
-
- org.cyclos.entities.system.CaptchaConfiguration
-
@Embeddable public class CaptchaConfiguration extends Object
Contains the configurations for CAPTCHA
-
-
Constructor Summary
Constructors Constructor Description CaptchaConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CaptchaEffectgetEffect()CaptchaProvidergetProvider()StringgetRecaptchaKey()StringgetRecaptchaSecret()StringgetTextColor()IntegergetTextLength()booleanisRecaptchaSecretSet()booleanisUseOnForgotPassword()booleanisUseOnPublicRegistration()voidsetEffect(CaptchaEffect effect)voidsetProvider(CaptchaProvider provider)voidsetRecaptchaKey(String recaptchaKey)voidsetRecaptchaSecret(String recaptchaSecret)voidsetTextColor(String textColor)voidsetTextLength(Integer textLength)voidsetUseOnForgotPassword(boolean useOnForgotPassword)voidsetUseOnPublicRegistration(boolean useOnPublicRegistration)
-
-
-
Method Detail
-
getEffect
public CaptchaEffect getEffect()
-
getProvider
public CaptchaProvider getProvider()
-
getRecaptchaKey
public String getRecaptchaKey()
-
getRecaptchaSecret
public String getRecaptchaSecret()
-
getTextColor
public String getTextColor()
-
getTextLength
public Integer getTextLength()
-
isRecaptchaSecretSet
public boolean isRecaptchaSecretSet()
-
isUseOnForgotPassword
public boolean isUseOnForgotPassword()
-
isUseOnPublicRegistration
public boolean isUseOnPublicRegistration()
-
setEffect
public void setEffect(CaptchaEffect effect)
-
setProvider
public void setProvider(CaptchaProvider provider)
-
setRecaptchaKey
public void setRecaptchaKey(String recaptchaKey)
-
setRecaptchaSecret
public void setRecaptchaSecret(String recaptchaSecret)
-
setTextColor
public void setTextColor(String textColor)
-
setTextLength
public void setTextLength(Integer textLength)
-
setUseOnForgotPassword
public void setUseOnForgotPassword(boolean useOnForgotPassword)
-
setUseOnPublicRegistration
public void setUseOnPublicRegistration(boolean useOnPublicRegistration)
-
-