Uses of Class
org.apache.pdfbox.pdmodel.encryption.AccessPermission
-
Packages that use AccessPermission Package Description org.apache.pdfbox.pdfparser The pdfparser package contains classes to parse PDF documents and objects within the document.org.apache.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents.org.apache.pdfbox.pdmodel.encryption The encryption package will handle the PDF document security handlers and the functionality of pluggable security handlers. -
-
Uses of AccessPermission in org.apache.pdfbox.pdfparser
Fields in org.apache.pdfbox.pdfparser declared as AccessPermission Modifier and Type Field Description private AccessPermission
COSParser. accessPermission
Methods in org.apache.pdfbox.pdfparser that return AccessPermission Modifier and Type Method Description AccessPermission
COSParser. getAccessPermission()
This will get the AccessPermission. -
Uses of AccessPermission in org.apache.pdfbox.pdmodel
Fields in org.apache.pdfbox.pdmodel declared as AccessPermission Modifier and Type Field Description private AccessPermission
PDDocument. accessPermission
Methods in org.apache.pdfbox.pdmodel that return AccessPermission Modifier and Type Method Description AccessPermission
PDDocument. getCurrentAccessPermission()
Returns the access permissions granted when the document was decrypted.Constructors in org.apache.pdfbox.pdmodel with parameters of type AccessPermission Constructor Description PDDocument(COSDocument doc, RandomAccessRead source, AccessPermission permission)
Constructor that uses an existing document. -
Uses of AccessPermission in org.apache.pdfbox.pdmodel.encryption
Fields in org.apache.pdfbox.pdmodel.encryption declared as AccessPermission Modifier and Type Field Description private AccessPermission
SecurityHandler. currentAccessPermission
The access permission granted to the current user for the document.private AccessPermission
PublicKeyRecipient. permission
private AccessPermission
StandardProtectionPolicy. permissions
Methods in org.apache.pdfbox.pdmodel.encryption that return AccessPermission Modifier and Type Method Description AccessPermission
SecurityHandler. getCurrentAccessPermission()
Returns the access permissions that were computed during document decryption.static AccessPermission
AccessPermission. getOwnerAccessPermission()
returns an access permission object for a document owner.AccessPermission
PublicKeyRecipient. getPermission()
Returns the access permission granted to the recipient.AccessPermission
StandardProtectionPolicy. getPermissions()
Returns the access permissionsMethods in org.apache.pdfbox.pdmodel.encryption with parameters of type AccessPermission Modifier and Type Method Description void
SecurityHandler. setCurrentAccessPermission(AccessPermission currentAccessPermission)
Sets the access permissions.void
PublicKeyRecipient. setPermission(AccessPermission permissions)
Set the access permission granted to the recipient.void
StandardProtectionPolicy. setPermissions(AccessPermission permissions)
Sets the access permissionsConstructors in org.apache.pdfbox.pdmodel.encryption with parameters of type AccessPermission Constructor Description StandardProtectionPolicy(java.lang.String ownerPassword, java.lang.String userPassword, AccessPermission permissions)
Creates an new instance of the standard protection policy in order to protect a PDF document with passwords.
-