private Map<Object, Object> getRequestContext() {
   Map<Object, Object> store =
       (Map<Object, Object>) request.getAttribute("org.juzu.request_scope");
   if (store == null) {
     request.setAttribute("org.juzu.request_scope", store = new HashMap<Object, Object>());
   }
   return store;
 }