public static String getMD5URL(String md5) {
return REST_URL + "hash/" + md5;
}
public static InputStream getCachingInputStream(URL url, boolean force) throws NoCacheException, IOException {
return cache.get(url, force ? new DownloadURLConnector() : new DefaultURLConnector(), force);
}