1. package com.sun.corba.se.spi.activation;
  2. /**
  3. * com/sun/corba/se/spi/activation/ServerHolder.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.2"
  5. * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl
  6. * Wednesday, September 15, 2004 3:50:42 AM PDT
  7. */
  8. /** Server callback API, passed to Activator in active method.
  9. */
  10. public final class ServerHolder implements org.omg.CORBA.portable.Streamable
  11. {
  12. public com.sun.corba.se.spi.activation.Server value = null;
  13. public ServerHolder ()
  14. {
  15. }
  16. public ServerHolder (com.sun.corba.se.spi.activation.Server initialValue)
  17. {
  18. value = initialValue;
  19. }
  20. public void _read (org.omg.CORBA.portable.InputStream i)
  21. {
  22. value = com.sun.corba.se.spi.activation.ServerHelper.read (i);
  23. }
  24. public void _write (org.omg.CORBA.portable.OutputStream o)
  25. {
  26. com.sun.corba.se.spi.activation.ServerHelper.write (o, value);
  27. }
  28. public org.omg.CORBA.TypeCode _type ()
  29. {
  30. return com.sun.corba.se.spi.activation.ServerHelper.type ();
  31. }
  32. }