package common; import java.rmi.Remote; import java.rmi.RemoteException; import java.util.Properties; public interface TestParamsRMISSL extends Remote { String retString() throws RemoteException; int retInt() throws RemoteException; double retDouble() throws RemoteException; double retMathSqrt(double arg) throws RemoteException; Properties retProperties() throws RemoteException; String[] retStrings() throws RemoteException; void shutDown() throws RemoteException; }