http://sap_host/GoodsMvt?GM_CODE=ADD&
MATERIAL=Coke&STGE_LOC=4352&
COST_CENTER=345
public interface InventoryItem {
String getMaterial();
} // InventoryItem
public interface InventoryItemContainer {
public final long ADD_ITEM = 1;
public final long REMOVE_ITEM = 2;
public int getStorageLocation()
throws java.rmi.RemoteException;
public void add(InventoryItem item)
throws java.rmi.RemoteException;
public InventoryItem remove()
throws java.rmi.RemoteException;
} // InventoryItemContainer