1 package com.atlassian.activeobjects.osgi;
2
3 import org.osgi.framework.Bundle;
4 import org.osgi.framework.ServiceRegistration;
5
6 /**
7 * A utility to register a service associated to a specific AO bundle
8 */
9 public interface OsgiServiceUtils {
10 <S, O extends S> ServiceRegistration registerService(Bundle bundle, Class<S> ifce, O obj);
11 }