List<AllowRule> toInherit = listForAny();
for (AllowBlock inherited : policy.getAllows()) {
toInherit.addAll(inherited.getAclRules());
}
for (ListIterator<AllowRule> it = toInherit.listIterator(); it.hasNext();) {
it.set(new AllowRule(it.next()));
}
x.getAclRules().addAll(0, toInherit);
return true;
}