001 package org.omg.GIOP;
002
003
004 /**
005 * org/omg/GIOP/ReplyHeader_1_2.java .
006 * Generated by the IDL-to-Java compiler (portable), version "3.2"
007 * from /home/iurt/rpm/BUILD/geronimo-spec-corba/src/main/idl/GIOP.idl
008 * Saturday, November 26, 2011 9:53:36 PM UTC
009 */
010
011 public final class ReplyHeader_1_2 implements org.omg.CORBA.portable.IDLEntity
012 {
013 public int request_id = (int)0;
014 public org.omg.GIOP.ReplyStatusType_1_2 reply_status = null;
015 public org.omg.IOP.ServiceContext service_context[] = null;
016
017 public ReplyHeader_1_2 ()
018 {
019 } // ctor
020
021 public ReplyHeader_1_2 (int _request_id, org.omg.GIOP.ReplyStatusType_1_2 _reply_status, org.omg.IOP.ServiceContext[] _service_context)
022 {
023 request_id = _request_id;
024 reply_status = _reply_status;
025 service_context = _service_context;
026 } // ctor
027
028 } // class ReplyHeader_1_2