1. package com.sun.corba.se.ActivationIDL;
  2. /**
  3. * com/sun/corba/se/ActivationIDL/ORBPortInfoHolder.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.1"
  5. * from ../../../../../../src/share/classes/com/sun/corba/se/ActivationIDL/activation.idl
  6. * Sunday, February 22, 2004 11:21:42 PM PST
  7. */
  8. // struct contain ORB and port info
  9. public final class ORBPortInfoHolder implements org.omg.CORBA.portable.Streamable
  10. {
  11. public com.sun.corba.se.ActivationIDL.ORBPortInfo value = null;
  12. public ORBPortInfoHolder ()
  13. {
  14. }
  15. public ORBPortInfoHolder (com.sun.corba.se.ActivationIDL.ORBPortInfo initialValue)
  16. {
  17. value = initialValue;
  18. }
  19. public void _read (org.omg.CORBA.portable.InputStream i)
  20. {
  21. value = com.sun.corba.se.ActivationIDL.ORBPortInfoHelper.read (i);
  22. }
  23. public void _write (org.omg.CORBA.portable.OutputStream o)
  24. {
  25. com.sun.corba.se.ActivationIDL.ORBPortInfoHelper.write (o, value);
  26. }
  27. public org.omg.CORBA.TypeCode _type ()
  28. {
  29. return com.sun.corba.se.ActivationIDL.ORBPortInfoHelper.type ();
  30. }
  31. }