00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 package cast.interfaces;
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 public interface _CASTComponentOperationsNC
00024 {
00025 void beat();
00026
00027 void setID(String id);
00028
00032 String getID();
00033
00034 void configure(java.util.Map<java.lang.String, java.lang.String> config);
00035
00036 void start();
00037
00038 void run();
00039
00040 void stop();
00041
00042 void setComponentManager(ComponentManagerPrx man);
00043
00044 void setTimeServer(TimeServerPrx ts);
00045
00049 void destroy();
00050 }