01: /*--------------------------------------------------------------------------
02: * <copyright>
03: *
04: * Copyright 1999-2004 BBNT Solutions, LLC
05: * under sponsorship of the Defense Advanced Research Projects
06: * Agency (DARPA).
07: *
08: * You can redistribute this software and/or modify it under the
09: * terms of the Cougaar Open Source License as published on the
10: * Cougaar Open Source Website (www.cougaar.org).
11: *
12: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
13: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
14: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
15: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
16: * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
17: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
18: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20: * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22: * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23: *
24: * </copyright>
25: * --------------------------------------------------------------------------*/
26: package org.cougaar.glm.plugins.projection;
27:
28: import org.cougaar.planning.ldm.policy.IntegerRuleParameter;
29: import org.cougaar.planning.ldm.policy.Policy;
30: import org.cougaar.planning.ldm.policy.RuleParameterIllegalValueException;
31: import org.cougaar.planning.ldm.policy.StringRuleParameter;
32:
33: /**
34: * The PolicyPlugin
35: *
36: *
37: */
38:
39: public class DemandProjectionPolicy extends Policy {
40: public static final String ItemConsumed = "ItemConsumed";
41: public static final String DaysBetweenDemand = "DaysBetweenDemand";
42:
43: public DemandProjectionPolicy() {
44: super ("DemandProjectionPolicy");
45:
46: StringRuleParameter ic = new StringRuleParameter(ItemConsumed);
47: try {
48: ic.setValue(new String());
49: } catch (RuleParameterIllegalValueException ex) {
50: System.out.println(ex);
51: }
52: Add(ic);
53:
54: IntegerRuleParameter dbd = new IntegerRuleParameter(
55: DaysBetweenDemand, 0, 30);
56: try {
57: dbd.setValue(new Integer(1));
58: } catch (RuleParameterIllegalValueException ex) {
59: System.out.println(ex);
60: }
61: Add(dbd);
62:
63: }
64:
65: public String getItemConsumed() {
66: StringRuleParameter param = (StringRuleParameter) Lookup(ItemConsumed);
67: return (String) param.getValue();
68: }
69:
70: public void setItemConsumed(String name) {
71: StringRuleParameter param = (StringRuleParameter) Lookup(ItemConsumed);
72: try {
73: param.setValue(name);
74: } catch (RuleParameterIllegalValueException ex) {
75: System.out.println(ex);
76: }
77: }
78:
79: public int getDaysBetweenDemand() {
80: IntegerRuleParameter param = (IntegerRuleParameter) Lookup(DaysBetweenDemand);
81: return ((Integer) (param.getValue())).intValue();
82: }
83:
84: public void setDaysBetweenDemand(int days) {
85: IntegerRuleParameter param = (IntegerRuleParameter) Lookup(DaysBetweenDemand);
86: try {
87: param.setValue(new Integer(days));
88: } catch (RuleParameterIllegalValueException ex) {
89: System.out.println(ex);
90: }
91: }
92: }
|