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