public class StandardProtectionPolicy extends ProtectionPolicy
user_pwd will not be
able to modify the document.
AccessPermission ap = new AccessPermission(); ap.setCanModify(false); StandardProtectionPolicy policy = new StandardProtectionPolicy(owner_pwd, user_pwd, ap); doc.protect(policy);
| Constructor and Description |
|---|
StandardProtectionPolicy(java.lang.String ownerPass,
java.lang.String userPass,
AccessPermission perms)
Creates an new instance of the standard protection policy
in order to protect a PDF document with passwords.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getOwnerPassword()
Getter of the property ownerPassword.
|
AccessPermission |
getPermissions()
Getter of the property permissions.
|
java.lang.String |
getUserPassword()
Getter of the property userPassword.
|
void |
setOwnerPassword(java.lang.String ownerPass)
Setter of the property ownerPassword.
|
void |
setPermissions(AccessPermission perms)
Setter of the property permissions.
|
void |
setUserPassword(java.lang.String userPass)
Setter of the property userPassword.
|
getEncryptionKeyLength, setEncryptionKeyLengthpublic StandardProtectionPolicy(java.lang.String ownerPass,
java.lang.String userPass,
AccessPermission perms)
ownerPass - The owner's password.userPass - The users's password.perms - The access permissions given to the user.public AccessPermission getPermissions()
public void setPermissions(AccessPermission perms)
perms - The permissions to set.public java.lang.String getOwnerPassword()
public void setOwnerPassword(java.lang.String ownerPass)
ownerPass - The ownerPassword to set.public java.lang.String getUserPassword()
public void setUserPassword(java.lang.String userPass)
userPass - The userPassword to set.