Package org.patchca.service

Examples of org.patchca.service.ConfigurableCaptchaService


  /* (non-Javadoc)
   * @see javax.servlet.GenericServlet#init()
   */
  @Override
  public void init() throws ServletException {
    cs = new ConfigurableCaptchaService();
   
    int width = NumberUtils.toInt(this.getInitParameter("width"), WIDTH);
    int height = NumberUtils.toInt(this.getInitParameter("height"), HEIGHT);
    cs.setWidth(width);
    cs.setHeight(height);
View Full Code Here

TOP

Related Classes of org.patchca.service.ConfigurableCaptchaService

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.