private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException {
   String[] args = null;
   java.util.Properties props = null;
   org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(args, props);
   try {
     String str = orb.object_to_string(this);
     s.writeUTF(str);
   } finally {
     orb.destroy();
   }
 }
 private void readObject(java.io.ObjectInputStream s) throws java.io.IOException {
   String str = s.readUTF();
   String[] args = null;
   java.util.Properties props = null;
   org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(args, props);
   try {
     org.omg.CORBA.Object obj = orb.string_to_object(str);
     org.omg.CORBA.portable.Delegate delegate =
         ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate();
     _set_delegate(delegate);
   } finally {
     orb.destroy();
   }
 }