HttpResponse response = httpclient.execute(httpGet);
String responseCode = new Integer(response.getStatusLine().getStatusCode()).toString();
resources.add(new Resource(pageLink, new Date(), responseCode, "page"));
} catch (IOException e) {
log.error("Unable to connect. Something really bad happened", e);
} finally {
httpGet.releaseConnection();