* @see AbstractCompiledPermissions#buildResult(Path)
*/
protected Result buildResult(Path absPath) throws RepositoryException {
Result res = null;
for (Iterator it = cPermissions.iterator(); it.hasNext();) {
AbstractCompiledPermissions acp = (AbstractCompiledPermissions) it.next();
Result other = acp.getResult(absPath);
res = (res == null) ? other : res.combine(other);
}
return res;
}