* @author Jose Noheda
*/
public class AJAXManageableImageCaptchaService extends DefaultManageableImageCaptchaService {
public boolean validateResponse(String id, String response) {
if (!store.hasCaptcha(id)) throw new CaptchaServiceException("Invalid ID, could not validate unexisting captcha");
return store.getCaptcha(id).validateResponse(response);
}