Package com.octo.captcha.engine

Examples of com.octo.captcha.engine.CaptchaEngine


  public static ImageCaptchaService captchaService() {
    try {
      if (_captchaService == null) {
        String captchaEngineClass = ERXProperties.stringForKeyWithDefault("er.captcha.captchaEngineClass", ERCaptchaEngine.class.getName());
        CaptchaEngine captchaEngine = (CaptchaEngine) Class.forName(captchaEngineClass).newInstance();
        _captchaService = new DefaultManageableImageCaptchaService(new FastHashMapCaptchaStore(), captchaEngine, 180, 100000, 75000);
      }
      return _captchaService;
    }
    catch (Throwable t) {
View Full Code Here

TOP

Related Classes of com.octo.captcha.engine.CaptchaEngine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.