}
currentNode = childNode;
}
PathPrefix chiefPrefix = null;
Judgement chiefJudgement = null;
for (PathPrefix candidatePrefix : mostSpecificPrefixes) {
Judgement judgement = candidatePrefix.getJudgement(
resourceAbstractPathName);
// EXCLUSION_EXCLUDE > FILTER_INCLUDE > IMPLICIT_EXCLUDE
if (chiefJudgement == null ||
judgement.getPriority() > chiefJudgement.getPriority()) {
chiefPrefix = candidatePrefix;
chiefJudgement = judgement;
}
}