Example 3 - Item Interface
    public interface Item extends EJBObject 
        {
        public String getDescription() 
           throws RemoteException;
        public void setDescription(String desc) 
           throws RemoteException;
        public Calendar getAuctionEnd() 
           throws RemoteException;
        public void setAuctionEnd(Calendar c) 
           throws RemoteException;
        }
            

Next Slide >>