1 28 29 30 package org.objectweb.ccm.runtime; 31 32 import org.objectweb.corba.runtime.*; 33 34 37 public class ComponentPOAConfigurationImpl 38 extends POAConfigurationImpl 39 implements ComponentPOAConfiguration 40 { 41 private ServicesSet _services_set; 43 44 public 46 ComponentPOAConfigurationImpl(String name, 47 org.omg.CORBA.Policy [] pols, 48 ORBService orbs, 49 ServicesSet sset) 50 { 51 super(name, pols, orbs); 53 54 _services_set = sset; 56 } 57 58 62 66 final public ServicesSet 67 services_set() 68 { 69 return _services_set; 70 } 71 } | Popular Tags |