public List getSupportedRestrictionsInfo()

in src/main/java/org/apache/sling/starter/access/models/Ace.java [527:532]


    public List<RestrictionDefinitionInfo> getSupportedRestrictionsInfo() {
        return getSupportedRestrictions().stream()
            .map(rd -> new RestrictionDefinitionInfo(rd.getName(), rd))
            .sorted(Comparator.comparing(RestrictionDefinitionInfo::getDisplayName))
            .collect(Collectors.toList());
    }