[jboss-user] [JBoss Seam] - Re: [lifecycle] Could not instantiate Seam component
vincent.latombe
do-not-reply at jboss.com
Tue Aug 21 11:44:35 EDT 2007
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
More information about the jboss-user
mailing list