1 7 package java.rmi.server; 8 9 20 abstract public class RemoteStub extends RemoteObject { 21 22 23 private static final long serialVersionUID = -1585587260594494182L; 24 25 28 protected RemoteStub() { 29 super(); 30 } 31 32 39 protected RemoteStub(RemoteRef ref) { 40 super(ref); 41 } 42 43 53 @Deprecated  54 protected static void setRef(RemoteStub stub, RemoteRef ref) { 55 throw new UnsupportedOperationException (); 56 } 57 } 58 | Popular Tags |