1
2
3
4
5
6
7 package com.octo.captcha.service.multitype;
8
9 import com.octo.captcha.service.image.ImageCaptchaService;
10 import com.octo.captcha.service.sound.SoundCaptchaService;
11 import com.octo.captcha.service.text.TextCaptchaService;
12
13 /***
14 * <p/>
15 * This class is designed to provide multiTypes captcha. It is the most general service. Implementation may provide a
16 * multiple engine constructor in order to provide differents typed captchas. See implementations for details. It act as
17 * a proxy for the real typed service implementations. The getQuestionForId should also reslove the case of a new
18 *
19 * @author <a href="mailto:marc.antoine.garrigue@gmail.com">Marc-Antoine Garrigue</a>
20 * @version 1.0
21 */
22 public interface MultiTypeCaptchaService extends ImageCaptchaService, SoundCaptchaService, TextCaptchaService {
23
24 }