]> git.argeo.org Git - gpl/argeo-slc.git/blob - OsgiBundlesProvider.java
de5f03c39437c30264bf94a2327e59357da64427
[gpl/argeo-slc.git] / OsgiBundlesProvider.java
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 }