Package com.liferay.portal.kernel.captcha

Examples of com.liferay.portal.kernel.captcha.CaptchaUtil


      ClassLoader portalClassLoader = PortalClassLoaderUtil.getClassLoader();

      @SuppressWarnings("unchecked")
      Class<Captcha> captchaClass = (Class<Captcha>) portalClassLoader.loadClass(captchaClassName);

      CaptchaUtil captchaUtil = new CaptchaUtil();
      Captcha captcha = captchaClass.newInstance();
      captchaUtil.setCaptcha(captcha);
      CaptchaUtil.serveImage(httpServletRequest, captchaHttpServletResponse);

      String captchaText = (String) httpServletRequest.getSession().getAttribute(CAPTCHA_TEXT);
      portletSession.setAttribute(CAPTCHA_TEXT, captchaText);
View Full Code Here

TOP

Related Classes of com.liferay.portal.kernel.captcha.CaptchaUtil

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.