}
}
String regex = element.getAttribute("regex");
if (hasText(regex))
{
scanner.addIncludeFilter(new RegexPatternTypeFilter(Pattern.compile(regex)));
}
String proxies = element.getAttribute("scanRemoteProxy");
if (hasText(proxies) && ("TRUE".equals(proxies.toUpperCase()) || "FALSE".equals(proxies.toUpperCase())))
{
scanProxies = Boolean.parseBoolean(proxies);