in src/main/java/org/apache/sling/starter/access/models/Ace.java [519:525]
public Set<RestrictionDefinition> getSupportedRestrictions() {
Set<RestrictionDefinition> supportedRestrictions = new HashSet<>();
for (RestrictionProvider rp : restrictionProviders) {
supportedRestrictions.addAll(rp.getSupportedRestrictions(resource.getPath()));
}
return supportedRestrictions;
}