1 28 29 30 package org.objectweb.ccm.runtime; 31 32 import org.objectweb.corba.runtime.*; 33 34 37 public class ContainerServiceImpl 38 extends org.omg.CORBA.LocalObject 39 implements ContainerService 40 { 41 static final private String _class_name = "ContainerServiceImpl"; 43 static final private String _service_id = ContainerService.SERVICE_ID; 44 private ORBService _orb_service; 45 private ComponentPOAService _component_poa_service; 46 private ServicesSet _services_set; 47 48 public 50 ContainerServiceImpl(ORBService orbs, 51 ComponentPOAService cpoas, 52 ServicesSet sset) 53 { 54 _orb_service = orbs; 56 _component_poa_service = cpoas; 57 _services_set = sset; 58 } 59 60 64 final public void 65 system_configuration_complete(SystemConfiguration cfg) 66 { 67 } 68 69 final public void 70 destroy() 71 { 72 final String opname = "destroy"; 74 final String msg = "FAILED (operation is NOT implemented currently)"; 75 TheLogger.debug(_class_name, opname, msg); 76 } 77 78 82 final public String 83 service_id() 84 { 85 return _service_id; 86 } 87 88 92 final public ORBService 93 orb_service() 94 { 95 return _orb_service; 96 } 97 98 final public ComponentPOAService 99 component_poa_service() 100 { 101 return _component_poa_service; 102 } 103 104 final public ServicesSet 105 services_set() 106 { 107 return _services_set; 108 } 109 } 110 | Popular Tags |