Hello,i have problems with my logoff action, i need to set the user object to 
null.

The code below dont works (i also made sure theres no seam component with name 
"user")



  | @Stateless
  | @Name("logoff")
  | public class LogoffAction implements Logoff {
  | 
  |     @In
  |     @Out(required=false)
  |         Member user;
  |     
  |     public String logoff() {                
  |             Seam.invalidateSession();
  |             user = null;
  |             
  |             // TODO Auto-generated method stub
  |             return "logoffsuccess";
  |     }
  | 
  | }
  | 
  | 


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

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

Reply via email to