1 package FIPA;
2
3
4 /***
5 * FIPA/ReceivedObject.java
6 * Generated by the IDL-to-Java compiler (portable), version "3.0"
7 * from FIPA.idl
8 * 09 March 2001 16:39:32 o'clock GMT
9 */
10
11 public final class ReceivedObject implements org.omg.CORBA.portable.IDLEntity
12 {
13 public String by = null;
14 public String from = null;
15 public FIPA.DateTime date = null;
16 public String id = null;
17 public String via = null;
18
19 public ReceivedObject ()
20 {
21 }
22
23 public ReceivedObject (String _by, String _from, FIPA.DateTime _date, String _id, String _via)
24 {
25 by = _by;
26 from = _from;
27 date = _date;
28 id = _id;
29 via = _via;
30 }
31
32 }