1 26 27 package org.objectweb.openccm.OpenCCM_DCI.cif; 28 29 import org.objectweb.openccm.OpenCCM_DCI.*; 30 31 39 40 public class DCIManagerImpl 41 extends org.objectweb.openccm.OpenCCM_DCI. 42 DCIManagerSessionComposition.DCIManagerImpl 43 { 44 private String dciName; 51 52 58 64 public void 65 configuration_complete() 66 { 67 try{ 68 ((DCIInformationSegImpl) 69 obtain_executor("dci_information")).setupDCI(); 70 ((DCIDeploymentSegImpl) 71 obtain_executor("dci_deployment")).setupDCI(); 72 ((NodeManagementSegImpl) 73 obtain_executor("node_management")).setupDCI(); 74 ((HomeManagementSegImpl) 75 obtain_executor("home_finder")).setupDCI(); 76 } 77 catch(Exception e){ 78 e.printStackTrace(); 79 } 80 } 81 82 83 public void 84 ccm_remove() 85 throws org.omg.Components.CCMException 86 { 87 (new org.objectweb.openccm.Deployment.ShutDownThread()).start(); 88 } 89 90 public void 91 push(org.ist.coach.DCI.NodeChanged code_changed){ 92 93 } 94 95 101 public void 102 dci_name(java.lang.String dciName) 103 { 104 this.dciName=dciName; 105 } 106 107 public String 108 dci_name() 109 { 110 return this.dciName; 111 } 112 113 114 115 116 } 117 | Popular Tags |