1 5 package ve.luz.ica.jackass.solver; 6 7 import org.omg.CORBA.Object ; 8 12 public interface ComponentProxyManager 13 { 14 19 String COMPONENT_ID_SEPARATOR = ":"; 20 21 26 Object [] getProxies(String componentID); 27 28 34 Object getProxy(String node, String componentID); 35 36 42 void addProxyToComponent(String componentID, String node, Object proxy); 43 44 48 void removeNode(String node); 49 50 56 void removeNodeComponent(String componentID, String node); 57 58 62 void removeComponent(String componentID); 63 64 68 void removeApplication(String appName); 69 } 70 | Popular Tags |