View Javadoc

1   
2   /*
3    * JCaptcha, the open source java framework for captcha definition and integration
4    * Copyright (c)  2007 jcaptcha.net. All Rights Reserved.
5    * See the LICENSE.txt file distributed with this package.
6    */
7   
8   /*
9    * jcaptcha, the open source java framework for captcha definition and integration
10   * copyright (c)  2007 jcaptcha.net. All Rights Reserved.
11   * See the LICENSE.txt file distributed with this package.
12   */
13  
14  /*
15   * jcaptcha, the open source java framework for captcha definition and integration
16   * copyright (c)  2007 jcaptcha.net. All Rights Reserved.
17   * See the LICENSE.txt file distributed with this package.
18   */
19  
20  /*
21   * jcaptcha, the open source java framework for captcha definition and integration
22   * copyright (c)  2007 jcaptcha.net. All Rights Reserved.
23   * See the LICENSE.txt file distributed with this package.
24   */
25  package com.octo.captcha.engine.bufferedengine;
26  
27  import com.octo.captcha.engine.CaptchaEngine;
28  import com.octo.captcha.engine.bufferedengine.buffer.CaptchaBuffer;
29  import org.apache.commons.logging.Log;
30  import org.apache.commons.logging.LogFactory;
31  
32  /***
33   * Quartz implmentation of the BufferedEngineContainer
34   *
35   * @author Benoit Doumas
36   */
37  public class QuartzBufferedEngineContainer extends BufferedEngineContainer {
38  
39      private static final Log log = LogFactory.getLog(QuartzBufferedEngineContainer.class.getName());
40  
41      public QuartzBufferedEngineContainer(CaptchaEngine engine, CaptchaBuffer memoryBuffer,
42                                           CaptchaBuffer diskBuffer, ContainerConfiguration containerConfiguration) {
43          super(engine, memoryBuffer, diskBuffer, containerConfiguration);
44      }
45  
46  }