1 28 29 package sampleappli; 31 32 import java.rmi.RemoteException; 33 import javax.ejb.EJBObject; 34 35 38 public interface Stock extends EJBObject { 39 40 public void increaseQuantity(int qty) throws RemoteException; 41 42 public void decreaseQuantity(int qty) throws RemoteException; 43 44 public int getQuantity() throws RemoteException; 45 46 public void setQuantity(int qty) throws RemoteException; 47 48 public String getId() throws RemoteException; 49 } | Popular Tags |