CaptchaResponseValidator.java :  » JBoss » jboss-seam-2.2.0 » org » jboss » seam » captcha » Java Open Source

Java Open Source » JBoss » jboss seam 2.2.0 
jboss seam 2.2.0 » org » jboss » seam » captcha » CaptchaResponseValidator.java
package org.jboss.seam.captcha;

import java.lang.annotation.Annotation;

import org.hibernate.validator.Validator;

/**
 * Validates that the input entered by the user matches
 * the captcha image.
 * 
 * @author Gavin King
 *
 */
public class CaptchaResponseValidator implements Validator
{

   public void initialize(Annotation captchaResponse) {}

   public boolean isValid(Object response)
   {
      return Captcha.instance().validateResponse( (String) response );
   }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.