Uses of Class
com.octo.captcha.service.CaptchaServiceException

Packages that use CaptchaServiceException
com.octo.captcha.module.jmx Package for JMX specific stuff. 
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.service.text   
 

Uses of CaptchaServiceException in com.octo.captcha.module.jmx
 

Methods in com.octo.captcha.module.jmx that throw CaptchaServiceException
static void JMXRegistrationHelper.registerToMBeanServer(ManageableCaptchaService service, java.lang.String name)
           
 

Uses of CaptchaServiceException in com.octo.captcha.service
 

Methods in com.octo.captcha.service that throw CaptchaServiceException
 java.lang.Object AbstractCaptchaService.getChallengeForID(java.lang.String ID)
          Method to retrive the challenge corresponding to the given ticket from the store.
 java.lang.Object CaptchaService.getChallengeForID(java.lang.String ID)
          Method to retrieve the challenge corresponding to the given ticket.
 java.lang.Object AbstractCaptchaService.getChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrive the challenge corresponding to the given ticket.
 java.lang.Object CaptchaService.getChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrieve the challenge corresponding to the given ticket.
 java.lang.String AbstractCaptchaService.getQuestionForID(java.lang.String ID)
          Method to retrive the question corresponding to the given ticket from the store.
 java.lang.String CaptchaService.getQuestionForID(java.lang.String ID)
          Method to retrieve the question corresponding to the given ticket.
 java.lang.String AbstractCaptchaService.getQuestionForID(java.lang.String ID, java.util.Locale locale)
          Method to retrive the question corresponding to the given ticket.
 java.lang.String CaptchaService.getQuestionForID(java.lang.String ID, java.util.Locale locale)
          Method to retrieve the question corresponding to the given ticket.
 java.lang.Boolean AbstractCaptchaService.validateResponseForID(java.lang.String ID, java.lang.Object response)
          Method to validate a response to the challenge corresponding to the given ticket and remove the coresponding captcha from the store.
 java.lang.Boolean AbstractManageableCaptchaService.validateResponseForID(java.lang.String ID, java.lang.Object response)
          Method to validate a response to the challenge corresponding to the given ticket and remove the coresponding captcha from the store.
 java.lang.Boolean CaptchaService.validateResponseForID(java.lang.String ID, java.lang.Object response)
          Method to validate a response to the challenge corresponding to the given ticket.
 

Uses of CaptchaServiceException in com.octo.captcha.service.captchastore
 

Methods in com.octo.captcha.service.captchastore that throw CaptchaServiceException
 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.
 java.util.Locale MapCaptchaStore.getLocale(java.lang.String id)
          Retrieve the locale for this key from the store.
 java.util.Locale CaptchaStore.getLocale(java.lang.String id)
          Retrieve the locale for this key from the store.
 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.
 

Uses of CaptchaServiceException in com.octo.captcha.service.image
 

Methods in com.octo.captcha.service.image that throw CaptchaServiceException
 java.awt.image.BufferedImage AbstractManageableImageCaptchaService.getImageChallengeForID(java.lang.String ID)
          Method to retrive the image challenge corresponding to the given ticket.
 java.awt.image.BufferedImage ImageCaptchaService.getImageChallengeForID(java.lang.String ID)
          Method to retrive the image challenge corresponding to the given ticket.
 java.awt.image.BufferedImage AbstractManageableImageCaptchaService.getImageChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrive the image challenge corresponding to the given ticket.
 java.awt.image.BufferedImage ImageCaptchaService.getImageChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrive the image challenge corresponding to the given ticket.
 

Uses of CaptchaServiceException in com.octo.captcha.service.multitype
 

Methods in com.octo.captcha.service.multitype that throw CaptchaServiceException
 java.awt.image.BufferedImage GenericManageableCaptchaService.getImageChallengeForID(java.lang.String ID)
          Method to retrive the image challenge corresponding to the given ticket.
 java.awt.image.BufferedImage GenericManageableCaptchaService.getImageChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrive the image challenge corresponding to the given ticket.
 javax.sound.sampled.AudioInputStream GenericManageableCaptchaService.getSoundChallengeForID(java.lang.String ID)
          Method to retrive the sound challenge corresponding to the given ticket.
 javax.sound.sampled.AudioInputStream GenericManageableCaptchaService.getSoundChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrive the sound challenge corresponding to the given ticket.
 java.lang.String GenericManageableCaptchaService.getTextChallengeForID(java.lang.String ID)
          Method to retrive the text challenge corresponding to the given ticket.
 java.lang.String GenericManageableCaptchaService.getTextChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrieve the text challenge corresponding to the given ticket.
 

Uses of CaptchaServiceException in com.octo.captcha.service.sound
 

Methods in com.octo.captcha.service.sound that throw CaptchaServiceException
 javax.sound.sampled.AudioInputStream SoundCaptchaService.getSoundChallengeForID(java.lang.String ID)
          Method to retrive the sound challenge corresponding to the given ticket.
 javax.sound.sampled.AudioInputStream AbstractManageableSoundCaptchaService.getSoundChallengeForID(java.lang.String ID)
          Method to retrive the image challenge corresponding to the given ticket.
 javax.sound.sampled.AudioInputStream SoundCaptchaService.getSoundChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrive the sound challenge corresponding to the given ticket.
 javax.sound.sampled.AudioInputStream AbstractManageableSoundCaptchaService.getSoundChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrive the image challenge corresponding to the given ticket.
 

Uses of CaptchaServiceException in com.octo.captcha.service.text
 

Methods in com.octo.captcha.service.text that throw CaptchaServiceException
 java.lang.String TextCaptchaService.getTextChallengeForID(java.lang.String ID)
          Method to retrive the text challenge corresponding to the given ticket.
 java.lang.String TextCaptchaService.getTextChallengeForID(java.lang.String ID, java.util.Locale locale)
          Method to retrieve the text challenge corresponding to the given ticket.
 



Copyright © 2003-2012 JCaptcha corp.. All Rights Reserved.