1. package com.sun.corba.se.PortableActivationIDL;
  2. /**
  3. * com/sun/corba/se/PortableActivationIDL/ServerManagerHolder.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.2"
  5. * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
  6. * Wednesday, September 15, 2004 3:50:44 AM PDT
  7. */
  8. /** Interface used to combine the Activator and Locator when both are
  9. * implemented together in the same process, as is currently the case
  10. * for our implementation.
  11. */
  12. public final class ServerManagerHolder implements org.omg.CORBA.portable.Streamable
  13. {
  14. public com.sun.corba.se.PortableActivationIDL.ServerManager value = null;
  15. public ServerManagerHolder ()
  16. {
  17. }
  18. public ServerManagerHolder (com.sun.corba.se.PortableActivationIDL.ServerManager initialValue)
  19. {
  20. value = initialValue;
  21. }
  22. public void _read (org.omg.CORBA.portable.InputStream i)
  23. {
  24. value = com.sun.corba.se.PortableActivationIDL.ServerManagerHelper.read (i);
  25. }
  26. public void _write (org.omg.CORBA.portable.OutputStream o)
  27. {
  28. com.sun.corba.se.PortableActivationIDL.ServerManagerHelper.write (o, value);
  29. }
  30. public org.omg.CORBA.TypeCode _type ()
  31. {
  32. return com.sun.corba.se.PortableActivationIDL.ServerManagerHelper.type ();
  33. }
  34. }