Hi all,
I've been reading the http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamAuthenticationGuide, which is really great but needs to be updated to the new API, apparently.
I don't know if I should be the one doing this, but the new API for the AuthenticatorAction class method is:
public class AuthenticatorAction implements AuthenticationProvider
{
public Identity authenticate(Identity user)
throws AuthenticationException
{
...
}
}
Once a user has logged in you can start using the @Secure annotation to control access to your component's methods.