3 Replies Latest reply on Oct 19, 2007 8:38 AM by pmuir

    Bijection in @Validator not working

    adamw

      Hello,

      I am writing a validator and it seems that bijection is not working, I have:

      @Validator
      @BypassInterceptors
      @Name("fieldsEqualValidator")
      public class FieldsEqualValidatorImpl implements javax.faces.validator.Validator {
       @In
       private FacesMessages facesMessages;
      
       @Logger
       private Log log;
      
      ...
      }
      


      And both are null when the validator is invoked. Apart from that, it works ;). I suppose bijection should work here? (at least that's what you can conclude from the info in the manual).

      Adam