|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Captcha | |
---|---|
com.octo.captcha | This is the base package for JCAPTCHAs. It defines two main interfaces : Captcha : the container for challenge, built by a CaptchaFactory, which contains the challenge object (a pix or a sound or whatever), the string question, and has the ability to validate a string answer CaptchaFactory : the factory for Captchas :),which have the responsability to build captchas from their constructor passing them builded questions and challenges. |
com.octo.captcha.engine | This is the base package for captcha engine . A CaptchaEngine provides methods to retrieve a new localized captcha sub package provides specialized engines, by type and by captcha scheme (ex : image/gimpy ) This package uses CaptchaFactories to build captcha. |
com.octo.captcha.engine.image | This is the base package for image captcha engines. ImageCaptchaEngine is an abstract classe thet define methods to retrive typed captchas. ListCaptchaImageEngine is an implementation using a java.util.List DefaultImageCaptchaEngine is an implementation using a a static initializer and is deprecated This package uses ImageCaptchaFactories to build captcha. |
com.octo.captcha.engine.sound | This is the base package for sound captcha engines. SoundCaptchaEngine is an abstract classe thet define methods to retrive typed captchas. ListCaptchaSoundEngine is an implementation using a java.util.List DefaulSoundCaptchaEngine is an implementation using a a static initializer and is deprecated This package uses SoundCaptchaFactories to build captcha. |
com.octo.captcha.image | Package for implementations of Image Captchas : Captcha with Image chalenges. It defines two classes : ImageCaptcha : ok we got it! ImageCaptchaFactory : Base class for ImageCaptcha generation |
com.octo.captcha.image.fisheye | This package a struture for implementing fisheye captcha A fisheye is ImageCaptcha with the question "Click on the center of the deformation of the image". |
com.octo.captcha.image.gimpy | This package a struture for implementing gimpys A gimpy is ImageCaptcha with the question "Spell the word". |
com.octo.captcha.service | This is the base package for JCAPTCHA service implementation. It defines two main interfaces : CaptchaService : The base implementation of a service, using two interfaces defined below, and a CaptchaEngine. AbstractManageableCaptchaServiceMBean : methods for service management and statistics collection EhcacheManageableCaptchaServiceMBean : implementation of the manageable service using ehcache BufferedEhcacheManageableCaptchaServiceMBean : ehcache manageable service extension that asynchrounously buffer captchas |
com.octo.captcha.service.captchastore | In this package you will find the captchaStore implementations. CaptchaStore : The stock of captcha used by the service to store captchas from the time it is generated to the time the captcha validation routine is called. |
com.octo.captcha.service.image | This package provides Image specialized captcha services implementations. |
com.octo.captcha.service.multitype | |
com.octo.captcha.service.sound | |
com.octo.captcha.sound | Package for implementations of Sound Captchas : Captcha with sound chalenges. It defines two classes : SoundCaptcha : ok we got it! SoundCaptchaFactory : Base class for SoundCaptcha generation |
com.octo.captcha.sound.gimpy | This package a struture for implementing gimpySound A gimpySound is SoundCaptcha with the question "Spell the word spoken". |
com.octo.captcha.sound.speller | This package a struture for implementing spellerSound A gimpySound is SoundCaptcha with the question "Write the word spelled out". |
com.octo.captcha.sound.spellfind | |
com.octo.captcha.text | |
com.octo.captcha.text.math |
Uses of Captcha in com.octo.captcha |
---|
Classes in com.octo.captcha that implement Captcha | |
---|---|
class |
MockCaptcha
|
Methods in com.octo.captcha that return Captcha | |
---|---|
Captcha |
CaptchaFactory.getCaptcha()
builds a captcha |
Captcha |
CaptchaFactory.getCaptcha(java.util.Locale locale)
build Localized captcha (don't forget those captcha are for human beings!) |
Uses of Captcha in com.octo.captcha.engine |
---|
Methods in com.octo.captcha.engine that return Captcha | |
---|---|
Captcha |
GenericCaptchaEngine.getNextCaptcha()
This return a new captcha. |
Captcha |
MockCaptchaEngine.getNextCaptcha()
This return a new captcha. |
Captcha |
CaptchaEngine.getNextCaptcha()
This return a new captcha. |
Captcha |
GenericCaptchaEngine.getNextCaptcha(java.util.Locale locale)
This return a new captcha. |
Captcha |
MockCaptchaEngine.getNextCaptcha(java.util.Locale locale)
This return a new captcha. |
Captcha |
CaptchaEngine.getNextCaptcha(java.util.Locale locale)
This return a new captcha. |
Uses of Captcha in com.octo.captcha.engine.image |
---|
Methods in com.octo.captcha.engine.image that return Captcha | |
---|---|
Captcha |
ImageCaptchaEngine.getNextCaptcha()
|
Captcha |
ImageCaptchaEngine.getNextCaptcha(java.util.Locale locale)
This return a new captcha. |
Uses of Captcha in com.octo.captcha.engine.sound |
---|
Methods in com.octo.captcha.engine.sound that return Captcha | |
---|---|
Captcha |
SoundCaptchaEngine.getNextCaptcha()
This return a new captcha. |
Captcha |
SoundCaptchaEngine.getNextCaptcha(java.util.Locale locale)
This return a new captcha. |
Uses of Captcha in com.octo.captcha.image |
---|
Classes in com.octo.captcha.image that implement Captcha | |
---|---|
class |
ImageCaptcha
String question about a BufferedImage challenge. |
Methods in com.octo.captcha.image that return Captcha | |
---|---|
Captcha |
ImageCaptchaFactory.getCaptcha()
builds a captcha. |
Captcha |
ImageCaptchaFactory.getCaptcha(java.util.Locale locale)
build Localized captcha (don't forget those captcha are for human beings!). |
Uses of Captcha in com.octo.captcha.image.fisheye |
---|
Classes in com.octo.captcha.image.fisheye that implement Captcha | |
---|---|
class |
FishEye
FishEye is an ImageCaptcha Challenge type : image Response type : a point position, in pixels from the bottom left, can be : a String with two numbers separated with a comma or a java.awt.Point Description : An image of a distorded picture. |
Uses of Captcha in com.octo.captcha.image.gimpy |
---|
Classes in com.octo.captcha.image.gimpy that implement Captcha | |
---|---|
class |
Gimpy
A Gimpy is an ImageCaptcha. |
Uses of Captcha in com.octo.captcha.service |
---|
Methods in com.octo.captcha.service that return Captcha | |
---|---|
protected Captcha |
AbstractCaptchaService.generateAndStoreCaptcha(java.util.Locale locale,
java.lang.String ID)
|
protected Captcha |
AbstractManageableCaptchaService.generateAndStoreCaptcha(java.util.Locale locale,
java.lang.String ID)
|
Methods in com.octo.captcha.service with parameters of type Captcha | |
---|---|
protected abstract java.lang.Object |
AbstractCaptchaService.getChallengeClone(Captcha captcha)
This method must be implemented by sublcasses and : Retrieve the challenge from the captcha Make and return a clone of the challenge Return the clone It has be design in order to let the service dispose the challenge of the captcha after rendering. |
Uses of Captcha in com.octo.captcha.service.captchastore |
---|
Methods in com.octo.captcha.service.captchastore that return Captcha | |
---|---|
Captcha |
CaptchaAndLocale.getCaptcha()
|
Captcha |
MapCaptchaStore.getCaptcha(java.lang.String id)
Retrieve the captcha for this key from the store. |
Captcha |
CaptchaStore.getCaptcha(java.lang.String id)
Retrieve the captcha for this key from the store. |
Methods in com.octo.captcha.service.captchastore with parameters of type Captcha | |
---|---|
void |
CaptchaAndLocale.setCaptcha(Captcha captcha)
|
void |
MapCaptchaStore.storeCaptcha(java.lang.String id,
Captcha captcha)
Store the captcha with the provided id as key. |
void |
CaptchaStore.storeCaptcha(java.lang.String id,
Captcha captcha)
Deprecated. in order to implement the by locale generation, use the CaptchaStore.storeCaptcha(String, com.octo.captcha.Captcha, java.util.Locale) |
void |
MapCaptchaStore.storeCaptcha(java.lang.String id,
Captcha captcha,
java.util.Locale locale)
Store the captcha with the provided id as key. |
void |
CaptchaStore.storeCaptcha(java.lang.String id,
Captcha captcha,
java.util.Locale locale)
Store the captcha with the provided id as key. |
Constructors in com.octo.captcha.service.captchastore with parameters of type Captcha | |
---|---|
CaptchaAndLocale(Captcha captcha)
|
|
CaptchaAndLocale(Captcha captcha,
java.util.Locale locale)
|
Uses of Captcha in com.octo.captcha.service.image |
---|
Methods in com.octo.captcha.service.image with parameters of type Captcha | |
---|---|
protected java.lang.Object |
AbstractManageableImageCaptchaService.getChallengeClone(Captcha captcha)
This method must be implemented by sublcasses and : Retrieve the challenge from the captcha Make and return a clone of the challenge Return the clone It has be design in order to let the service dipose the challenge of the captcha after rendering. |
Uses of Captcha in com.octo.captcha.service.multitype |
---|
Methods in com.octo.captcha.service.multitype with parameters of type Captcha | |
---|---|
protected java.lang.Object |
GenericManageableCaptchaService.getChallengeClone(Captcha captcha)
This method : Retrieve the challenge from the captcha Make and return a clone of the challenge Return the clone It has be design in order to let the service dipose the challenge of the captcha after rendering. |
Uses of Captcha in com.octo.captcha.service.sound |
---|
Methods in com.octo.captcha.service.sound with parameters of type Captcha | |
---|---|
protected java.lang.Object |
AbstractManageableSoundCaptchaService.getChallengeClone(Captcha captcha)
This method must be implemented by sublcasses and : Retrieve the challenge from the captcha Make and return a clone of the challenge Return the clone It has be design in order to let the service dipose the challenge of the captcha after rendering. |
Uses of Captcha in com.octo.captcha.sound |
---|
Classes in com.octo.captcha.sound that implement Captcha | |
---|---|
class |
SoundCaptcha
Description: String question about a Line challenge, this class is abstract. |
Methods in com.octo.captcha.sound that return Captcha | |
---|---|
Captcha |
SoundCaptchaFactory.getCaptcha()
this method builds a capctha. |
Captcha |
SoundCaptchaFactory.getCaptcha(java.util.Locale locale)
this method builds a localized capctha. |
Uses of Captcha in com.octo.captcha.sound.gimpy |
---|
Classes in com.octo.captcha.sound.gimpy that implement Captcha | |
---|---|
class |
GimpySound
Description: |
Uses of Captcha in com.octo.captcha.sound.speller |
---|
Classes in com.octo.captcha.sound.speller that implement Captcha | |
---|---|
class |
SpellerSound
SoundCaptcha with spelling |
Uses of Captcha in com.octo.captcha.sound.spellfind |
---|
Classes in com.octo.captcha.sound.spellfind that implement Captcha | |
---|---|
class |
SpellFindCaptcha
|
Uses of Captcha in com.octo.captcha.text |
---|
Classes in com.octo.captcha.text that implement Captcha | |
---|---|
class |
TextCaptcha
A text captcha is a captcha with a Text challenge... |
Methods in com.octo.captcha.text that return Captcha | |
---|---|
Captcha |
TextCaptchaFactory.getCaptcha()
builds a captcha. |
Captcha |
TextCaptchaFactory.getCaptcha(java.util.Locale locale)
build Localized captcha (don't forget those captcha are for human beings!). |
Uses of Captcha in com.octo.captcha.text.math |
---|
Classes in com.octo.captcha.text.math that implement Captcha | |
---|---|
class |
MathCaptcha
Simple math captcha |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |