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