--- projects/cms/source/server/idl/iscream.idl 2000/11/20 18:55:07 1.5 +++ projects/cms/source/server/idl/iscream.idl 2002/03/22 10:43:06 1.20 @@ -1,10 +1,10 @@ // // This class provides infomation about the CORBA -// interface for the server side of the I-Scream system. +// interface for the server side of the i-scream system. // -// $Id: iscream.idl,v 1.5 2000/11/20 18:55:07 tdb Exp $ +// $Id: iscream.idl,v 1.20 2002/03/22 10:43:06 tdb Exp $ // -module uk { module ac { module ukc { module iscream { +module uk { module org { module iscream { module cms { module server { module core { // The Logger interface, provides a corba object that @@ -25,6 +25,8 @@ module uk { module ac { module ukc { module iscream { interface Configuration { string getProperty(in string key); long long getLastModified(); + string getFileList(); + void disconnect(); }; // The ConfigurationManager interface, provides a CORBA object that @@ -38,12 +40,40 @@ module uk { module ac { module ukc { module iscream { }; module filter { - interface FilterManager { - + interface Filter { + void receiveXML(in string xml); }; + interface FilterInfo { + string getHostName(); + string getUDPPort(); + string getTCPPort(); + }; // end filter }; + + module client { + interface Client { + void receiveXML(in string xml); + }; + // end client + }; + + module clientinterface { + interface ClientInterface { + void receiveXML(in string xml); + }; + interface CorbaControlHandler { + boolean startData(); + boolean stopData(); + boolean setHostList(in string hostList); + void disconnect(); + }; + interface CorbaClientListener { + CorbaControlHandler connect(in client::Client client, in string name); + }; + // end clientinterface + }; -// end ac.uk.ukc.iscream -};};};}; \ No newline at end of file +// end uk.org.iscream.cms.server +};};};};};