Examples of TituloEleitoralValidator


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

    /**
     * @see org.hibernate.validator.Validator#initialize(java.lang.annotation.Annotation)
     */
    public void initialize(TituloEleitoral tituloEleitoral) {
        AnnotationMessageProducer messageProducer = new AnnotationMessageProducer(tituloEleitoral);
        stellaValidator = new TituloEleitoralValidator(messageProducer);
    }
View Full Code Here

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

    private boolean transientValue = false;

    public void validate(FacesContext facesContext, UIComponent uiComponent, Object value) throws ValidatorException {
        ResourceBundle bundle = resourceBundleFinder.getForCurrentLocale(facesContext);
        ResourceBundleMessageProducer producer = new ResourceBundleMessageProducer(bundle);
        TituloEleitoralValidator validator = new TituloEleitoralValidator(producer);

        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

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

    private boolean transientValue = false;

    public void validate(FacesContext facesContext, UIComponent uiComponent, Object value) throws ValidatorException {
        ResourceBundle bundle = resourceBundleFinder.getForCurrentLocale(facesContext);
        ResourceBundleMessageProducer producer = new ResourceBundleMessageProducer(bundle);
        TituloEleitoralValidator validator = new TituloEleitoralValidator(producer);

        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

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

  private TituloEleitoralValidator stellaValidator;

  public void initialize(TituloEleitoral tituloEleitoral) {
    AnnotationMessageProducer messageProducer = new AnnotationMessageProducer(
        tituloEleitoral);
    stellaValidator = new TituloEleitoralValidator(messageProducer);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.