]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/BundleRegister.java
Improve Javadocs
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.osgi / src / main / java / org / argeo / slc / osgi / BundleRegister.java
1 package org.argeo.slc.osgi;
2
3 /** A structured set of OSGi bundles. */
4 public interface BundleRegister {
5 /**
6 * @param pkg
7 * the Java package
8 * @param version
9 * the version, can be only major.minor or null
10 * @return the bundle providing this package or null if none was found
11 */
12 public String bundleProvidingPackage(String pkg, String version);
13 }