
import java.rmi.*;
import java.rmi.server.*;
import java.io.*;

public interface PingPong extends Remote
{
	public String ping() throws RemoteException;
	
	public char pong(char c) throws RemoteException;

	public byte[] bong(String stuff) throws RemoteException;
}

