/**********************************************************************
*/
protected ServletBase _matchServlet(ServletServiceRequest request)
{
PathType type = _pathStrategy.matchPath(request);
if (type != null) {
return _servletsByPath.get(type);
}
return null;
}