blob: 2477e9f9d60a3e6a05dbfb2313ba50bb18ff65f4 [file] [log] [blame]
package com.jetbrains.python.console.pydev;
import org.apache.xmlrpc.XmlRpcException;
/**
* Interface that determines what's needed from the xml-rpc server.
*
* @author Fabio
*/
public interface IPydevXmlRpcClient {
/**
* @param command the command to be executed in the server
* @param args the arguments passed to the command
* @param
* @return the result from executing the command
*
* @throws XmlRpcException
*/
Object execute(String command, Object[] args) throws XmlRpcException;
}