EJB @Remote
Javadoc
The @Remote annotation allows you to use an annotation to define the Remote interface for a given EJB. The example below shows you how to do that.
@Remote public interface ShoppingCatalogRemote { }
Up