if (visitController != null)
threadScope.get().put(RESPONSE_CUR_VISIT_CTRL,
visitController);
HttpServletRequest req = (HttpServletRequest) threadScope.get()
.get(RESPONSE_REQ);
if (visitController == null || visitController.canRead(req)) {
boolean found = visitRes(res, reqPath, null, null, null);
if (found)
break;
}
} finally {