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 #include "MonitorErr.idl"
00029
00030 #pragma prefix "alma"
00031
00032
00033 module MonitorArchiver
00034 {
00039 interface Blobber : ACS::ACSComponent
00040 {
00041 CollectorListStatus addCollector(in string inComponentName);
00042 CollectorListStatus containsCollector(in string inComponentName);
00043 CollectorListStatus removeCollector(in string inComponentName);
00044 };
00045
00049 interface Controller : ACS::ACSComponent
00050 {
00058 void registerCollector(in string collectorCompName)
00059 raises (MonitorErr::CollectorRegistrationFailedEx);
00060
00064 void deregisterCollector(in string collectorCompName);
00065
00081 void registerKnownCollectors(in string blobberCompName);
00082 };
00083 };
00084
00085 #endif