]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.repo/src/org/argeo/slc/repo/OsgiBundlesProvider.java
Adapt refactoring (remove APIs from argeo.util)
[gpl/argeo-slc.git] / org.argeo.slc.repo / src / org / argeo / slc / repo / 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 }