001 package org.omg.GIOP;
002
003 /**
004 * Generated from IDL struct "RequestHeader_1_1".
005 *
006 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007 * @version generated at Sep 6, 2011 5:12:29 AM
008 */
009
010 public final class RequestHeader_1_1
011 implements org.omg.CORBA.portable.IDLEntity
012 {
013 public RequestHeader_1_1(){}
014 public org.omg.IOP.ServiceContext[] service_context;
015 public int request_id;
016 public boolean response_expected;
017 public byte[] reserved;
018 public byte[] object_key;
019 public java.lang.String operation = "";
020 public byte[] requesting_principal;
021 public RequestHeader_1_1(org.omg.IOP.ServiceContext[] service_context, int request_id, boolean response_expected, byte[] reserved, byte[] object_key, java.lang.String operation, byte[] requesting_principal)
022 {
023 this.service_context = service_context;
024 this.request_id = request_id;
025 this.response_expected = response_expected;
026 this.reserved = reserved;
027 this.object_key = object_key;
028 this.operation = operation;
029 this.requesting_principal = requesting_principal;
030 }
031 }