1 package org.omg.IOP;2 3 4 /**5 * org/omg/IOP/TaggedProfile.java .6 * Generated by the IDL-to-Java compiler (portable), version "3.2"7 * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl8 * Saturday, February 9, 2008 9:40:04 AM GMT9 */10 11 public final class TaggedProfile implements org.omg.CORBA.portable.IDLEntity 12 {13 14 /** The tag, represented as a profile id. */15 public int tag = (int)0;16 17 /** The associated profile data. */18 public byte profile_data[] = null;19 20 public TaggedProfile ()21 {22 } // ctor23 24 public TaggedProfile (int _tag, byte[] _profile_data)25 {26 tag = _tag;27 profile_data = _profile_data;28 } // ctor29 30 } // class TaggedProfile31