All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.bnd.service.repository.MinimalRepository Maven / Gradle / Ivy

Go to download

A command line utility and Ant plugin to wrap, build, or examine bundles.

There is a newer version: 2.4.0
Show newest version
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