blob: d6d91d92f5cd8b0425ea383d19f3adb32397f58a [file] [log] [blame]
package org.apache.aries.containers;
import java.util.Set;
import org.osgi.annotation.versioning.ProviderType;
@ProviderType
public interface ContainerFactory {
Service getService(ServiceConfig config) throws Exception;
Set<String> listServices() throws Exception;
}