01: package org.cougaar.logistics.plugin.inventory;
02:
03: /**
04: * Created by IntelliJ IDEA.
05: *
06: * @author gvidaver@bbn.com
07: * Date: Dec 22, 2005
08: * Time: 7:46:15 PM
09: * To change this template use File | Settings | File Templates.
10: */
11: public interface LevelOfDetailInventoryManager {
12: /**
13: * @see AllocationAssessor#createPhasedAllocationResult
14: * @see AllocationAssessor#reconcileInventoryLevels(java.util.Collection)
15: * @return time of end of level 2
16: */
17: long getEndOfLevelTwo();
18:
19: /**
20: * @see RefillProjectionGenerator#calculateLevelSixProjections
21: * @return refill start
22: */
23: long getRefillStartTime();
24:
25: /**
26: * @see RefillProjectionGenerator#calculateLevelSixProjections
27: * @return days (hours?) of ost
28: */
29: int getOrderShipTime();
30: }
|