Ejemplo n.º 1
0
 public static void handle_abs_file(
     EventLoader event_loader, String path, boolean need_cache, int response_code) {
   HttpServletResponse response = event_loader.response();
   response.setStatus(response_code);
   handle_abs_file(event_loader, path, need_cache);
 }
Ejemplo n.º 2
0
 public static void handle(EventLoader event_loader, String path, boolean need_cache) {
   path = event_loader.real_path(path);
   handle_abs_file(event_loader, path, need_cache);
 }