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 bnd Show documentation
Show all versions of bnd Show documentation
A command line utility and Ant plugin to wrap, build, or examine bundles.
package aQute.bnd.service.repository;
import java.io.*;
import java.util.*;
import java.util.concurrent.*;
import aQute.bnd.version.*;
import aQute.service.reporter.*;
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);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy