Uses of Interface
com.octo.captcha.Captcha

Packages that use Captcha
com.octo.captcha   
com.octo.captcha.engine   
com.octo.captcha.engine.bufferedengine   
com.octo.captcha.engine.bufferedengine.buffer   
com.octo.captcha.engine.image This is the base package for image captcha engines. 
com.octo.captcha.engine.sound This is the base package for sound captcha engines. 
com.octo.captcha.image Package for implementations of Image Captchas : Captcha with Image chalenges. 
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   
com.octo.captcha.service.captchastore   
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. 
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
 

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 CaptchaEngine.getNextCaptcha()
          This return a new captcha.
 Captcha GenericCaptchaEngine.getNextCaptcha()
          This return a new captcha.
 Captcha CaptchaEngine.getNextCaptcha(java.util.Locale locale)
          This return a new captcha.
 Captcha GenericCaptchaEngine.getNextCaptcha(java.util.Locale locale)
          This return a new captcha.
 

Uses of Captcha in com.octo.captcha.engine.bufferedengine
 

Methods in com.octo.captcha.engine.bufferedengine that return Captcha
 Captcha BufferedEngineContainer.getNextCaptcha()
           
 Captcha BufferedEngineContainer.getNextCaptcha(java.util.Locale locale)
           
 

Uses of Captcha in com.octo.captcha.engine.bufferedengine.buffer
 

Methods in com.octo.captcha.engine.bufferedengine.buffer that return Captcha
 Captcha CaptchaBuffer.removeCaptcha()
          remove a captcha from the buffer
 Captcha DatabaseCaptchaBuffer.removeCaptcha()
          remove a captcha from the buffer
 Captcha DiskCaptchaBuffer.removeCaptcha()
           
 Captcha MemoryCaptchaBuffer.removeCaptcha()
           
 Captcha CaptchaBuffer.removeCaptcha(java.util.Locale locale)
          remove a captcha from the buffer corresponding to the locale
 Captcha DatabaseCaptchaBuffer.removeCaptcha(java.util.Locale locale)
          remove a captcha from the buffer corresponding to the locale
 Captcha DiskCaptchaBuffer.removeCaptcha(java.util.Locale locale)
           
 Captcha MemoryCaptchaBuffer.removeCaptcha(java.util.Locale locale)
           
 

Methods in com.octo.captcha.engine.bufferedengine.buffer with parameters of type Captcha
 void CaptchaBuffer.putCaptcha(Captcha captcha)
          Put a captcha with default laocale
 void DatabaseCaptchaBuffer.putCaptcha(Captcha captcha)
          Put a captcha with default locale
 void DiskCaptchaBuffer.putCaptcha(Captcha captcha)
           
 void MemoryCaptchaBuffer.putCaptcha(Captcha captcha)
           
 void CaptchaBuffer.putCaptcha(Captcha captcha, java.util.Locale locale)
          Put a captcha with a locale
 void DatabaseCaptchaBuffer.putCaptcha(Captcha captcha, java.util.Locale locale)
          Put a captcha with a locale
 void DiskCaptchaBuffer.putCaptcha(Captcha captcha, java.util.Locale locale)
           
 void MemoryCaptchaBuffer.putCaptcha(Captcha captcha, java.util.Locale locale)
           
 

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 CaptchaStore.getCaptcha(java.lang.String id)
          Retrieve the captcha for this key from the store.
 Captcha MapCaptchaStore.getCaptcha(java.lang.String id)
          Retrieve the captcha for this key from the store.
 Captcha JBossCacheCaptchaStore.getCaptcha(java.lang.String s)
           
 

Methods in com.octo.captcha.service.captchastore with parameters of type Captcha
 void CaptchaAndLocale.setCaptcha(Captcha captcha)
           
 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)
          Store the captcha with the provided id as key.
 void JBossCacheCaptchaStore.storeCaptcha(java.lang.String s, Captcha captcha)
           
 void CaptchaStore.storeCaptcha(java.lang.String id, Captcha captcha, java.util.Locale locale)
          Store the captcha with the provided id as key.
 void MapCaptchaStore.storeCaptcha(java.lang.String id, Captcha captcha, java.util.Locale locale)
          Store the captcha with the provided id as key.
 void JBossCacheCaptchaStore.storeCaptcha(java.lang.String s, Captcha captcha, java.util.Locale locale)
           
 

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
 



Copyright 2003-2009 JCaptcha. All Rights Reserved.