I'm trying to extract access permissions with Apache PDFBox. The problem is that all the permissions are set to true. For example, I extracted the Document Assembly property as follow:
PDDocument doc = PDDocument.load(new File(filePath));
AccessPermission ap = doc.getCurrentAccessPermission();
boolean documentAssembly = ap.canAssembleDocument();
The documentAssembly variable is true. However, when i check the permissions on Adobe reader I found that the document assembly property is set to not allowed:
Is there a way to extract all the correct informations, as in the above image?