01: /*
02: * GolfShop
03: *
04: * Enhydra super-servlet specification object
05: *
06: */
07:
08: package golfShop.spec.inventory;
09:
10: import java.util.Vector;
11:
12: public interface Inventory {
13:
14: public Vector getItems(long this id);
15:
16: public Inventory getParent(long childid);
17:
18: public Inventory getInventoryById(long this id);
19:
20: public boolean isCategory();
21:
22: public long getObjectId();
23:
24: public String getDesc();
25:
26: public String getRef();
27:
28: }
|