mLog.debug("isUrlAccepted for url: " + url);
// check whether this URL matches to a white list prefix
for (int i = 0; i < mWhiteListEntryArr.length; i++) {
if (mWhiteListEntryArr[i].shouldBeUpdated()) {
UrlMatcher matcher = mWhiteListEntryArr[i].getUrlMatcher();
if (matcher.matches(url)) {
// get the values for link extraction and indexing
// from the current matcher hit
urlMatchResult.setShouldBeParsed(matcher.getShouldBeParsed());
urlMatchResult.setShouldBeIndexed(matcher.getShouldBeIndexed());
mLog.debug("Whitelist matches for url: " + url);