|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CaptchaService
Main interface of the package. Used by client applications to expose Captchas Challenge validate the response in a transparent and easy way. The flow of operations for using this service is :
Developpers should implement this interface using the following rules :
When the getChallengeForID method is
called, If no captcha exist for this id, create a new captcha return the challenge.
else if the getChallenge method has been called on the stored captcha, generate a new captcha, else return this
captcha challenge.
When the getQuestionForId method is
called, If no captcha exist for this id, create a new captcha return the challenge.
else if the a captcha with this id exist, verify the locale (if specified). If the locale match return the same question, else regenerate a captcha and returns the corresponding question.
Throw a CaptchaServiceException if
the ID is invalid else return a boolean, and free the ID (remove the captcha).
All method may throw a
CaptchaException if an error occurs during Captcha Generation.
Method Summary | |
---|---|
java.lang.Object |
getChallengeForID(java.lang.String ID)
Method to retrieve the challenge corresponding to the given ticket. |
java.lang.Object |
getChallengeForID(java.lang.String ID,
java.util.Locale locale)
Method to retrieve the challenge corresponding to the given ticket. |
java.lang.String |
getQuestionForID(java.lang.String ID)
Method to retrieve the question corresponding to the given ticket. |
java.lang.String |
getQuestionForID(java.lang.String ID,
java.util.Locale locale)
Method to retrieve the question corresponding to the given ticket. |
java.lang.Boolean |
validateResponseForID(java.lang.String ID,
java.lang.Object response)
Method to validate a response to the challenge corresponding to the given ticket. |
Method Detail |
---|
java.lang.Object getChallengeForID(java.lang.String ID) throws CaptchaServiceException
ID
- ticket
CaptchaServiceException
- if the ticket is invalidjava.lang.Object getChallengeForID(java.lang.String ID, java.util.Locale locale) throws CaptchaServiceException
ID
- ticketlocale
- the desired localized captcha
CaptchaServiceException
- if the ticket is invalidjava.lang.String getQuestionForID(java.lang.String ID) throws CaptchaServiceException
ID
- ticket
CaptchaServiceException
- if the ticket is invalidjava.lang.String getQuestionForID(java.lang.String ID, java.util.Locale locale) throws CaptchaServiceException
ID
- ticketlocale
- the desired localized captcha
CaptchaServiceException
- if the ticket is invalidjava.lang.Boolean validateResponseForID(java.lang.String ID, java.lang.Object response) throws CaptchaServiceException
ID
- ticket
CaptchaServiceException
- if the ticket is invalid
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |