1 3 package org.objectweb.jonas.stests.appli; 4 5 import java.rmi.RemoteException ; 6 import javax.ejb.EJBObject ; 7 8 11 public interface Item extends EJBObject { 12 13 14 20 21 public Integer getItemID() throws RemoteException ; 22 23 24 31 32 public void setItemName(String name) throws RemoteException ; 33 34 35 41 42 public String getItemName() throws RemoteException ; 43 44 45 52 53 public void setItemPrice(float price) throws RemoteException ; 54 55 56 62 63 public float getItemPrice() throws RemoteException ; 64 65 66 73 74 public void setItemInfo(String info) throws RemoteException ; 75 76 77 83 84 public String getItemInfo() throws RemoteException ; 85 86 } 87 | Popular Tags |