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