KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gcc > org > omg > GIOP > RequestHeader_1_0


1 package gcc.org.omg.GIOP;
2
3
4 /**
5 * gcc/org/omg/GIOP/RequestHeader_1_0.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from ../idl/GIOP.idl
8 * Wednesday, December 8, 2004 11:54:39 AM EST
9 */

10
11
12 // GIOP 1.0
13
public final class RequestHeader_1_0 implements org.omg.CORBA.portable.IDLEntity JavaDoc
14 {
15   public gcc.org.omg.IOP.ServiceContext service_context[] = null;
16   public int request_id = (int)0;
17   public boolean response_expected = false;
18   public byte object_key[] = null;
19   public String JavaDoc operation = null;
20   public byte requesting_principal[] = null;
21
22   public RequestHeader_1_0 ()
23   {
24   } // ctor
25

26   public RequestHeader_1_0 (gcc.org.omg.IOP.ServiceContext[] _service_context, int _request_id, boolean _response_expected, byte[] _object_key, String JavaDoc _operation, byte[] _requesting_principal)
27   {
28     service_context = _service_context;
29     request_id = _request_id;
30     response_expected = _response_expected;
31     object_key = _object_key;
32     operation = _operation;
33     requesting_principal = _requesting_principal;
34   } // ctor
35

36 } // class RequestHeader_1_0
37
Popular Tags