1 package ejava.examples.ejbwar.inventory.rmi; 2 3 import javax.ejb.Remote; 4 5 import ejava.examples.ejbwar.inventory.client.InventoryClient; 6 7 /** 8 * This interface defines the RMI interface to the Inventory service 9 * deployed on the server. We are choosing to extend the same interface 10 * the HTTP Client used since it was technology-agnostic and could be 11 * directly implemented by RMI. 12 */ 13 @Remote 14 public interface InventoryMgmtRemote extends InventoryClient { 15 }