01: /*
02: * <copyright>
03: *
04: * Copyright 1997-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:
27: package org.cougaar.mlm.plugin.organization;
28:
29: import org.cougaar.glm.ldm.Constants;
30: import org.cougaar.planning.ldm.plan.AssetTransfer;
31: import org.cougaar.planning.ldm.plan.Task;
32: import org.cougaar.planning.plugin.asset.AssetReportPlugin;
33: import org.cougaar.util.UnaryPredicate;
34:
35: /**
36: * OrgReportPlugin manages REPORTFORDUTY and REPORTFORSERVICE relationships
37: * Handles both expansion and allocation of these tasks.
38: * @see org.cougaar.planning.plugin.legacy.SimplifiedPlugin
39: * @see org.cougaar.planning.plugin.legacy.SimplifiedPluginTest
40: */
41: public class OrgReportPlugin extends AssetReportPlugin {
42:
43: /**
44: * getTaskPredicate - returns task predicate for task subscription
45: * Default implementation subscribes to all non-internal tasks. Derived classes
46: * should probably implement a more specific version.
47: *
48: * @return UnaryPredicate - task predicate to be used.
49: */
50: protected UnaryPredicate getTaskPredicate() {
51: return allReportTaskPred();
52: }
53:
54: protected UnaryPredicate getAssetTransferPred() {
55: return allReportAssetTransferPred();
56: }
57:
58: // #######################################################################
59: // BEGIN predicates
60: // #######################################################################
61:
62: // predicate for getting allocatable tasks of report for duty
63: private static UnaryPredicate allReportTaskPred() {
64: return new UnaryPredicate() {
65: public boolean execute(Object o) {
66: if (o instanceof Task) {
67: Task task = (Task) o;
68: if ((task.getVerb()
69: .equals(Constants.Verb.REPORTFORDUTY))
70: || (task.getVerb()
71: .equals(Constants.Verb.REPORTFORSERVICE))) {
72: return true;
73: }
74: }
75: return false;
76: }
77: };
78: }
79:
80: private static UnaryPredicate allReportAssetTransferPred() {
81: return new UnaryPredicate() {
82: public boolean execute(Object o) {
83: if (o instanceof AssetTransfer) {
84: Task t = ((AssetTransfer) o).getTask();
85: return ((t.getVerb()
86: .equals(Constants.Verb.REPORTFORDUTY)) || (t
87: .getVerb()
88: .equals(Constants.Verb.REPORTFORSERVICE)));
89: }
90: return false;
91: }
92: };
93: }
94: }
|