blob: 0044da37d3aec3e42e6b78afc83898d73f0cd8dd [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.service;
2
3import java.io.File;
4
5import aQute.lib.osgi.Jar;
6
7public interface RepositoryListenerPlugin {
8
9 /**
10 * Called when a bundle is added to a repository.
11 * @param repository
12 * @param jar
13 * @param file
14 */
15 void bundleAdded(RepositoryPlugin repository, Jar jar, File file);
16}