You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
279 B

package verteiltesysteme.rmi;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface RMIEchoInterface extends Remote {
public String toLowerCase(String input) throws RemoteException;
public String toUpperCase(String input) throws RemoteException;
}