1 28 package org.objectweb.carol.rmi.jrmp.server; 29 30 import java.io.IOException ; 32 import java.io.ObjectInput ; 33 import java.io.ObjectOutput ; 34 35 import org.objectweb.carol.rmi.jrmp.interceptor.JClientRequestInterceptor; 36 37 import sun.rmi.transport.LiveRef; 38 39 46 public class JUnicastRefSf extends JUnicastRef { 47 48 51 public JUnicastRefSf() { 52 } 53 54 59 public JUnicastRefSf(LiveRef liveRef, JClientRequestInterceptor[] cis, String [] initial, int local) { 60 super(liveRef, cis, initial, local); 61 } 62 63 68 public void readExternal(ObjectInput in) throws IOException , ClassNotFoundException { 69 readExternal(in, true); 70 } 71 72 77 public void writeExternal(ObjectOutput out) throws IOException { 78 writeExternal(out, true); 79 } 80 81 } | Popular Tags |