improve error messages from cache

This commit is contained in:
Grahame Grieve 2019-11-19 19:52:13 +11:00
parent 2221590d4d
commit 9531c6f901
1 changed files with 11 additions and 0 deletions

View File

@ -70,6 +70,17 @@ import com.google.gson.JsonObject;
*/
public class PackageCacheManager {
/** if you don't provide and implementation of this interface, the PackageCacheManager will use the web directly.
*
* You can use this interface to
* @author graha
*
*/
public interface INetworkServices {
InputStream resolvePackage(String packageId, String version);
}
public class VersionHistory {
private String id;
private String canonical;