Uses of Interface
cloud.opencode.base.captcha.store.CaptchaStore
Packages that use CaptchaStore
Package
Description
OpenCode Base Captcha - Zero-dependency CAPTCHA generation library
OpenCode Base 验证码 - 零依赖验证码生成库
CAPTCHA Storage
验证码存储
CAPTCHA Validators
验证码验证器
-
Uses of CaptchaStore in cloud.opencode.base.captcha
Methods in cloud.opencode.base.captcha that return CaptchaStoreMethods in cloud.opencode.base.captcha with parameters of type CaptchaStoreModifier and TypeMethodDescriptionOpenCaptcha.Builder.store(CaptchaStore store) Sets the CAPTCHA store. -
Uses of CaptchaStore in cloud.opencode.base.captcha.store
Classes in cloud.opencode.base.captcha.store that implement CaptchaStoreModifier and TypeClassDescriptionfinal classMemory Captcha Store - In-memory CAPTCHA storage 内存验证码存储 - 内存中的验证码存储final classRedis Captcha Store - Redis-based CAPTCHA storage Redis验证码存储 - 基于Redis的验证码存储Methods in cloud.opencode.base.captcha.store that return CaptchaStoreModifier and TypeMethodDescriptionstatic CaptchaStoreCaptchaStore.memory()Creates a memory-based store.static CaptchaStoreCaptchaStore.memory(int maxSize) Creates a memory-based store with max size. -
Uses of CaptchaStore in cloud.opencode.base.captcha.validator
Methods in cloud.opencode.base.captcha.validator with parameters of type CaptchaStoreModifier and TypeMethodDescriptionstatic CaptchaValidatorCaptchaValidator.simple(CaptchaStore store) Creates a simple validator.static CaptchaValidatorCaptchaValidator.timeBased(CaptchaStore store) Creates a time-based validator with behavior checking.Constructors in cloud.opencode.base.captcha.validator with parameters of type CaptchaStoreModifierConstructorDescriptionCreates a new behavior validator with the specified store.BehaviorCaptchaValidator(CaptchaStore store, BehaviorAnalyzer analyzer) Creates a new behavior validator with custom analyzer.Creates a new validator with the specified store.Creates a new validator with the specified store.