1. package org.omg.IOP;
  2. /**
  3. * org/omg/IOP/TaggedProfile.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.1"
  5. * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl
  6. * Monday, February 23, 2004 7:03:03 AM GMT
  7. */
  8. /**
  9. * Object references have at least one tagged profile. Each profile
  10. * supports one or more protocols and encapsulates all the basic
  11. * information the protocols it supports need to identify an object.
  12. * Any single profile holds enough information to drive a complete
  13. * invocation using any of the protocols it supports; the content
  14. * and structure of those profile entries are wholly specified by
  15. * these protocols.
  16. */
  17. public final class TaggedProfile implements org.omg.CORBA.portable.IDLEntity
  18. {
  19. /** The tag, represented as a profile id. */
  20. public int tag = (int)0;
  21. /** The associated profile data. */
  22. public byte profile_data[] = null;
  23. public TaggedProfile ()
  24. {
  25. } // ctor
  26. public TaggedProfile (int _tag, byte[] _profile_data)
  27. {
  28. tag = _tag;
  29. profile_data = _profile_data;
  30. } // ctor
  31. } // class TaggedProfile