if (unique) {
rnd = "/" + System.currentTimeMillis();
url += rnd;
}
url += "/example.html";
FetchListEntry fle = new FetchListEntry(true, new Page(url, 1.0f), new String[] { "test" + rnd });
FetcherOutput fo = new FetcherOutput(fle, MD5Hash.digest(url), ProtocolStatus.STATUS_SUCCESS);
StringBuffer content = new StringBuffer("<html><body><h1>Hello from Page " + i + "</h1>");
if (unique) {
content.append("<p>Created at epoch time: " + System.currentTimeMillis() + ", " + r.nextLong() + "</p>");
}