1 package org.argeo.slc.repo;
2
3 import java.util.List;
4
5 /**
6 * Provides OSGi bundles either by linking to them, by wrapping existing
7 * archives or by building them.
8 */
9 public interface OsgiBundlesProvider {
10 /** The provided bundles in the order they will be retrieved/wrapped/built. */
11 public List<ArtifactDistribution> provides();
12 }