1 Reply Latest reply on Mar 7, 2012 4:52 PM by lightguard

    PasswordHash injection

    mafym

      Hi,

       

      //does not work because PasswordHash is not Serializable (WELD-001413).
      @Inject
      private PasswordHash passwordHash; 
      
      //works
      @Inject 
      private transient PasswordHash passwordHash;
      

       

      Can you, please, change PasswordHash to implement Serializable?

      Thanks!