Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef MONITOR_ARCHIVER_IDL_
00024 #define MONITOR_ARCHIVER_IDL_
00025
00026 #include <acscomponent.idl>
00027 #include <CollectorListStatus.idl>
00028
00029 #pragma prefix "alma"
00030
00031
00032 module MonitorArchiver
00033 {
00038 interface Blobber : ACS::ACSComponent
00039 {
00040 CollectorListStatus addCollector(in string inComponentName);
00041 CollectorListStatus containsCollector(in string inComponentName);
00042 CollectorListStatus removeCollector(in string inComponentName);
00043 };
00044
00048 interface Controller : ACS::ACSComponent
00049 {
00054 void registerCollector(in string collectorCompName);
00055
00059 void deregisterCollector(in string collectorCompName);
00060
00074 void registerKnownCollectors(in string blobberCompName);
00075 };
00076 };
00077
00078 #endif