--- xbean-bundleutils/src/main/java/org/apache/xbean/osgi/bundle/util/DelegatingBundleContext.java~ 2014-04-14 13:39:32.316688191 +0200 +++ xbean-bundleutils/src/main/java/org/apache/xbean/osgi/bundle/util/DelegatingBundleContext.java 2014-04-14 13:39:41.973106769 +0200 @@ -153,5 +153,13 @@ public Bundle getBundle(String location) { return bundleContext.getBundle(location); } + + public org.osgi.framework.ServiceObjects getServiceObjects(ServiceReference reference) { + return bundleContext.getServiceObjects(reference); + } + + public ServiceRegistration registerService(Class clazz, org.osgi.framework.ServiceFactory factory, Dictionary properties) { + return bundleContext.registerService(clazz, factory, properties); + } }