1 Reply Latest reply on Feb 27, 2012 10:52 AM by jsoye

    Seam 3.1.0.Final: Have BaseAuthenticator & PasswordHash disappeared?

    jsoye

      Hi,

      I've just moved from 3.0.0.Final to 3.1.0.Final and I can't seem to find the above files anymore. The documentation still refers to them. They're in  3.1.0.CR1.

       

       

      import org.jboss.seam.security.management.PasswordHash;

      import org.jboss.seam.security.BaseAuthenticator;

       

      public class SimpleAuthenticator extends BaseAuthenticator implements Authenticator {

      ...

      }

       

      Also, my application now can't find

       

      import javax.servlet.http.HttpServletRequest;

       

      The only changes I made were to change my POM to

       

      <seam.version>3.1.0.Final</seam.version>

       

      and remove seam-servlet which it says has now moved to solder.

       

              <dependency>

                  <groupId>org.jboss.solder</groupId>

                  <artifactId>solder-impl</artifactId>

                  <version>${seam.version}</version>

              </dependency>

       

       

      Many thanks.