
aQute.bnd.service.repository.InfoRepository 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
The newest version!
package aQute.bnd.service.repository;
import aQute.bnd.service.RepositoryPlugin;
import aQute.bnd.service.repository.SearchableRepository.ResourceDescriptor;
import aQute.bnd.version.Version;
/**
* Can return a {@link ResourceDescriptor} for a given bsn/version.
*/
public interface InfoRepository extends RepositoryPlugin {
/**
* Return a resource descriptor for a given bsn/version.
*
* @param bsn The exact bsn
* @param version The exact version (must also match qualifier)
* @return a ResourceDescriptor describing the artifact
*/
ResourceDescriptor getDescriptor(String bsn, Version version) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy