1 29 30 package com.caucho.iiop.orb; 31 32 35 public class SerializableMarshal extends Marshal { 36 public static final Marshal MARSHAL = new SerializableMarshal(); 37 38 public void marshal(org.omg.CORBA_2_3.portable.OutputStream os, 39 Object value) 40 { 41 os.write_value((java.io.Serializable ) value); 42 } 43 44 public Object unmarshal(org.omg.CORBA_2_3.portable.InputStream is) 45 { 46 return is.read_value(); 47 } 48 } 49 | Popular Tags |