package telephony.manager; import telephony.exceptions.*;
import java.rmi.*;
import java.rmi.server.*;
public interface ManagementClientInterface extends Remote {
public int setInvocationRV(String FunctionName, String KeyFunctionArg, int NewInvocationRV) throws RemoteException;
public int setTerminationRV(String FunctionName, String KeyFunctionArg, int NewTerminationRV) throws RemoteException;
public int setLogCapacity(int NewLogSize) throws RemoteException;
}