aQute.bnd.service.repository.MinimalRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bndlib Show documentation
Show all versions of biz.aQute.bndlib Show documentation
bndlib: A Swiss Army Knife for OSGi
package aQute.bnd.service.repository;
import java.io.File;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Future;
import aQute.bnd.version.Version;
import aQute.service.reporter.Report;
public interface MinimalRepository {
public enum Gestalt {
ADD, REMOTE
}
Report add(File f) throws Exception;
Iterable list(String globbing);
List versions(String bsn);
Future get(String bsn, Version version, Map attrs);
boolean is(Gestalt gestalt);
}