KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > impl > protocol > giopmsgheaders > IORAddressingInfo


1 /*
2  * @(#)IORAddressingInfo.java 1.8 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.corba.se.impl.protocol.giopmsgheaders;
9
10
11 /**
12 * com/sun/corba/se/impl/protocol/giopmsgheaders/IORAddressingInfo.java
13 * Generated by the IDL-to-Java compiler (portable), version "3.0"
14 * from ../../../../../../../src/share/classes/com/sun/corba/se/GiopIDL/g.idl
15 * Sunday, June 4, 2000 5:18:54 PM PDT
16 */

17
18 public final class IORAddressingInfo implements org.omg.CORBA.portable.IDLEntity JavaDoc
19 {
20   public int selected_profile_index = (int)0;
21   public org.omg.IOP.IOR JavaDoc ior = null;
22
23   public IORAddressingInfo ()
24   {
25   } // ctor
26

27   public IORAddressingInfo (int _selected_profile_index, org.omg.IOP.IOR JavaDoc _ior)
28   {
29     selected_profile_index = _selected_profile_index;
30     ior = _ior;
31   } // ctor
32

33 } // class IORAddressingInfo
34
Popular Tags