1 28 package org.objectweb.carol.jtests.conform.basic.server; 29 30 import java.rmi.RemoteException ; 31 32 import javax.rmi.PortableRemoteObject ; 33 34 38 public class BasicObject extends PortableRemoteObject implements BasicObjectItf { 39 40 44 public BasicObject() throws RemoteException { 45 super(); 46 } 47 48 53 public String getString() throws RemoteException { 54 return "string"; 55 } 56 57 } | Popular Tags |