@SuppressWarnings("unchecked")
public void run() {
String token = Iterables.getLast(Splitter.on('/').split(requestPath), "");
Map<String, Object> params = memcache.load(new Key(STASH, token));
if (params == null) {
throw new NotFoundException("No stashed request for this token");
} else {
response
.setStatus((Integer) params.get("status"))
.setSleepSeconds((Integer) params.get("sleepSeconds"))
.setMimeType((String) params.get("mimeType"))