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

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

There is a newer version: 7.0.0
Show newest version
package aQute.bnd.service.repository;

import org.osgi.annotation.versioning.ProviderType;

import aQute.bnd.util.dto.DTO;

@ProviderType
public interface ResolverInfo {

	enum State {
		Pending, Missing, Unresolveable, Resolveable;
	}

	class ResolveStatus extends DTO {
		public State	state;
		public String	message;
	}

	ResolveStatus getResolveStatus(byte[] sha) throws Exception;

	ResolveStatus getResolveStatus(String filterExpr) throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy