"[EMAIL PROTECTED]" wrote : Post some info about the logout action.
This is my logout button:
< s:button value="Logout" styleClass="button" view="/login.xhtml" 
  |                                     action="#{identity.logout}" 
rendered="#{identity.loggedIn}"/>

This is my authenticator:

  | @Stateless
  | @Name("authenticator")
  | public class Authenticator implements IAuthenticator {
  |     @In(create = true)
  |     private UserDao userDao;
  | 
  |     @Out(required = false, scope = SESSION)
  |     private User user;
  | 
  |     public boolean authenticate() {
  |             user = userDao.login();
  |             if (user == null)
  |                     return false;
  |             
  |             return true;
  |     }
  | }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4113664#4113664

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4113664
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to