]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/OsgiBundlesProvider.java
Clean session management.
[gpl/argeo-slc.git] / runtime / org.argeo.slc.repo / src / main / java / 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 }