1 28 29 30 package org.objectweb.corba.runtime; 31 32 36 public class ServantConfigurationImpl 37 extends org.omg.CORBA.LocalObject  38 implements ServantConfiguration 39 { 40 private ORBService _orb_service; 42 private POAService _poa_service; 43 44 public 46 ServantConfigurationImpl(ORBService orbs, POAService poas) 47 { 48 _orb_service = orbs; 50 _poa_service = poas; 51 } 52 53 57 final public ORBService 58 orb_service() 59 { 60 return _orb_service; 61 } 62 63 final public POAService 64 poa_service() 65 { 66 return _poa_service; 67 } 68 } 69 | Popular Tags |