1. package org.omg.IOP;
  2. /**
  3. * org/omg/IOP/TaggedProfile.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.2"
  5. * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl
  6. * Wednesday, September 15, 2004 10:28:42 AM GMT
  7. */
  8. public final class TaggedProfile implements org.omg.CORBA.portable.IDLEntity
  9. {
  10. /** The tag, represented as a profile id. */
  11. public int tag = (int)0;
  12. /** The associated profile data. */
  13. public byte profile_data[] = null;
  14. public TaggedProfile ()
  15. {
  16. } // ctor
  17. public TaggedProfile (int _tag, byte[] _profile_data)
  18. {
  19. tag = _tag;
  20. profile_data = _profile_data;
  21. } // ctor
  22. } // class TaggedProfile