{
if (manualMonitoredContexts.containsKey(targetServletContext.getServletContextName()))
{
String dispatherPath = manualMonitoredContexts.get(targetServletContext.getServletContextName());
CommandDispatcher dispatcher = new TomcatCommandDispatcher(dispatherPath);
return dispatcher.include(targetServletContext, request, response, callback, handback);
}
else
{
return dispatcher.include(targetServletContext, request, response, callback, handback);
}