Unable to set ACL permission for nodes under "/content" but its working for nodes under "/apps" Hi, Our Project requirement is to create User Group and assign Permissions Programmatically.Created a Postprocessor to get the SAML Response and based on that Creating group and permissions programmatically. While applying permissions to the newly created group, for the paths which are available in "/content" permission are not getting applied but for "/apps" and "/var" permissions are getting applied. private void parseSAMLResponse(Set<String> runModes, String samlResponseString)throws ParserConfigurationException, SAXException, IOException, UnsupportedEncodingException{DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();documentBuilderFactory.setNamespaceAware(true);DocumentBuilder docBuilder = documentBuilderFactory.newDocumentBuilder();Map<String, String> samlAttributeMap = new HashMap<String, String>();StringReader strReader = new StringReader(samlResponseString);InputSource inputSource = new InputSourc