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.planning.ldm.plan;
28:
29: import java.io.IOException;
30: import java.io.ObjectInputStream;
31: import java.io.ObjectOutputStream;
32:
33: import org.cougaar.core.mts.MessageAddress;
34:
35: /**
36: * PlanningDirective message containing a Transferable
37: **/
38:
39: public class TransferableAssignmentImpl extends PlanningDirectiveImpl
40: implements TransferableAssignment, NewTransferableAssignment {
41: private transient Transferable assignedTransferable;
42:
43: public TransferableAssignmentImpl() {
44: super ();
45: }
46:
47: public TransferableAssignmentImpl(Transferable transferable) {
48: assignedTransferable = transferable;
49: }
50:
51: public TransferableAssignmentImpl(Transferable transferable,
52: MessageAddress src, MessageAddress dest) {
53: assignedTransferable = transferable;
54: super .setSource(src);
55: super .setDestination(dest);
56: }
57:
58: /** implementations of the TransferableAssignment interface */
59:
60: /** @return transferable that has beeen assigned */
61: public Transferable getTransferable() {
62: return assignedTransferable;
63: }
64:
65: /** implementation methods for the NewTransferableAssignment interface */
66: /** @param newtransferable sets the transferable being assigned */
67: public void setTransferable(Transferable newtransferable) {
68: assignedTransferable = newtransferable;
69: }
70:
71: public String toString() {
72: String transferableDescr = "(Null AssignedTransferable)";
73: if (assignedTransferable != null)
74: transferableDescr = assignedTransferable.toString();
75:
76: return "<TransferableAssignment " + transferableDescr + ", "
77: + ">" + super .toString();
78: }
79:
80: private void writeObject(ObjectOutputStream stream)
81: throws IOException {
82: stream.defaultWriteObject();
83: stream.writeObject(assignedTransferable);
84: }
85:
86: private void readObject(ObjectInputStream stream)
87: throws ClassNotFoundException, IOException {
88:
89: stream.defaultReadObject();
90: assignedTransferable = (Transferable) stream.readObject();
91: }
92:
93: }
|