Package br.com.caelum.stella.validation

Examples of br.com.caelum.stella.validation.CPFValidator


import br.com.caelum.stella.validation.CPFValidator;

public class SimpleExample {
  public static void main(String[] args) {
    String cpf = "867.554.707-24";
    List<ValidationMessage> messages = new CPFValidator().invalidMessagesFor(cpf);
    for (ValidationMessage error : messages) {
      System.out.println(error.getMessage());
    }

    new CPFValidator().assertValid("867.554.707-24");
  }
View Full Code Here


    public void validate(FacesContext facesContext, UIComponent uiComponent, Object value) throws ValidatorException {
      if (value == null || "".equals(value)) return;
     
        ResourceBundle bundle = resourceBundleFinder.getForCurrentLocale(facesContext);
        ResourceBundleMessageProducer producer = new ResourceBundleMessageProducer(bundle);
        CPFValidator validator = new CPFValidator(producer, formatted);

        try {
            validator.assertValid(value.toString());
        } catch (InvalidStateException e) {
            List<ValidationMessage> messages = e.getInvalidMessages();
            String firstErrorMessage = messages.remove(0).getMessage();
            registerAllMessages(facesContext, uiComponent, messages);
            throw new ValidatorException(new FacesMessage(firstErrorMessage));
View Full Code Here

  private CPFValidator stellaValidator;

  @Override
  public void initialize(CPF cpf) {
    AnnotationMessageProducer messageProducer = new AnnotationMessageProducer(cpf);
    stellaValidator = new CPFValidator(messageProducer, cpf.formatted(),cpf.ignoreRepeated());
  }
View Full Code Here

    /**
     * @see org.hibernate.validator.Validator#initialize(java.lang.annotation.Annotation)
     */
    public void initialize(CPF cpf) {
        AnnotationMessageProducer messageProducer = new AnnotationMessageProducer(cpf);
        stellaValidator = new CPFValidator(messageProducer, cpf.formatted());
    }
View Full Code Here

import br.com.caelum.stella.validation.CPFValidator;

public class SimpleExample {
    public static void main(String[] args) {
        String cpf = "867.554.707-24";
        for (ValidationMessage error : new CPFValidator().invalidMessagesFor(cpf)) {
            System.out.println(error.getMessage());
        }

        new CPFValidator().assertValid("867.554.707-24");

    }
View Full Code Here

TOP

Related Classes of br.com.caelum.stella.validation.CPFValidator

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.