To make a session bean (stateless or stateful) you need to add an interface 
(local or remote). Read some EJB3 documentation if you need more details.

What you could add :
@Local
public interface Register {
   public boolean register();
}

Implement this interface with your action.
public interface RegisterAction implements Register

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

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

Reply via email to