View Javadoc

1   package FIPA;
2   
3   
4   /***
5   * FIPA/Envelope.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 Envelope implements org.omg.CORBA.portable.IDLEntity
12  {
13    public FIPA.AgentID to[] = null;
14    public FIPA.AgentID from[] = null;
15    public String comments = null;
16    public String aclRepresentation = null;
17    public int payloadLength = (int)0;
18    public String payloadEncoding = null;
19    public FIPA.DateTime date[] = null;
20    public String encrypted[] = null;
21    public FIPA.AgentID intendedReceiver[] = null;
22    public FIPA.ReceivedObject received[] = null;
23    public FIPA.Property transportBehaviour[][] = null;
24    public FIPA.Property userDefinedProperties[] = null;
25  
26    public Envelope ()
27    {
28    } // ctor
29  
30    public Envelope (FIPA.AgentID[] _to, FIPA.AgentID[] _from, String _comments, String _aclRepresentation, int _payloadLength, String _payloadEncoding, FIPA.DateTime[] _date, String[] _encrypted, FIPA.AgentID[] _intendedReceiver, FIPA.ReceivedObject[] _received, FIPA.Property[][] _transportBehaviour, FIPA.Property[] _userDefinedProperties)
31    {
32      to = _to;
33      from = _from;
34      comments = _comments;
35      aclRepresentation = _aclRepresentation;
36      payloadLength = _payloadLength;
37      payloadEncoding = _payloadEncoding;
38      date = _date;
39      encrypted = _encrypted;
40      intendedReceiver = _intendedReceiver;
41      received = _received;
42      transportBehaviour = _transportBehaviour;
43      userDefinedProperties = _userDefinedProperties;
44    } // ctor
45  
46  } // class Envelope