package system.util;

import java.rmi.Remote;
import java.rmi.RemoteException;

/**
 * This interface connects wrServer to wr_src_Server servlet. It is for the direct (or RMI) connection.
 * @author: Nikolai Rangelov
 */
public interface wr_src_ServerRMI extends Remote {
/**
 * This is only a reference to the wr_src_Server's method.
 * @return boolean
 */
	public boolean wr_srcMethodFlow(long wrKey, int srcKey) throws RemoteException;
/**
 * This is only a reference to the wr_src_Server's method.
 * @return boolean
 */
	public boolean wr_srcServerDeInit()throws RemoteException;
/**
 * This is only a reference to the wr_src_Server's method.
 * @return byte
 */
	public byte wr_srcServerInit(String Iwr_srcLogPath, int IScreenLogLevel, int IFileLogLevel, String Idb_Drivers, String Idb_host, String Idb_user, String Idb_password) throws RemoteException;
}

