package mit.rmi ;

public interface Interface
extends java.rmi.Remote
{
	Boolean authenticate( byte[] ticket )
		throws java.rmi.RemoteException ; 
	Object invoke( java.io.Serializable object , String methodName , Class[] argTypes , Object[] args )
		throws java.rmi.RemoteException ; 
	String test()
		throws java.rmi.RemoteException ;
}
