Uses of Class
org.pdfbox.pdmodel.encryption.AccessPermission

Packages that use AccessPermission
org.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents. 
org.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.pdfbox.pdmodel
 

Methods in org.pdfbox.pdmodel that return AccessPermission
 AccessPermission PDDocument.getCurrentAccessPermission()
          Returns the access permissions granted when the document was decrypted.
 

Uses of AccessPermission in org.pdfbox.pdmodel.encryption
 

Fields in org.pdfbox.pdmodel.encryption declared as AccessPermission
protected  AccessPermission SecurityHandler.currentAccessPermission
          The access permission granted to the current user for the document.
 

Methods in org.pdfbox.pdmodel.encryption that return AccessPermission
 AccessPermission StandardProtectionPolicy.getPermissions()
          Getter of the property permissions.
 AccessPermission SecurityHandler.getCurrentAccessPermission()
          Returns the access permissions that were computed during document decryption.
 AccessPermission PublicKeyRecipient.getPermission()
          Returns the access permission granted to the recipient.
static AccessPermission AccessPermission.getOwnerAccessPermission()
          returns an access permission object for a document owner.
 

Methods in org.pdfbox.pdmodel.encryption with parameters of type AccessPermission
 void StandardProtectionPolicy.setPermissions(AccessPermission perms)
          Setter of the property permissions.
 void PublicKeyRecipient.setPermission(AccessPermission permissions)
          Set the access permission granted to the recipient.
 

Constructors in org.pdfbox.pdmodel.encryption with parameters of type AccessPermission
StandardProtectionPolicy(String ownerPass, String userPass, AccessPermission perms)
          Creates an new instance of the standard protection policy in order to protect a PDF document with passwords.