EJB @RemoteHome
Javadoc
The @RemoteHome annotation allows you to annotate a class as the RemoteHome for a given EJB. Below you will see an example on how to do this.
@RemoteHome public class ShoppingCatalogHome { }
Up