Class PdfSecurityOptions
public class PdfSecurityOptions
extends Object
Represents the security setting.
-
Constructor Summary
Constructors
-
Method Summary
boolean
Gets the permission to insert, rotate, or delete pages and create bookmarks or thumbnail images even if ModifyDocumentPermission is not set.
boolean
Gets the permission to copy or extract content.
boolean
Gets the permission to fill the form fields.
boolean
Gets the permission to print in high quality.
boolean
Gets the permission to comment on the document.
boolean
Gets the permission to modify pdf document.
Gets the owner password of the document.
boolean
Gets the permission to print pdf document.
void
Sets the permission to insert, rotate, or delete pages and create bookmarks or thumbnail images even if ModifyDocumentPermission is not set.
void
Sets the permission to copy or extract content.
void
Sets the permission to fill the form fields.
void
Sets the permission to print in high quality.
void
Sets the permission to comment on the document.
void
Sets the permission to modify pdf document.
void
Sets the owner password of the document.
void
Sets the permission to print pdf document.
void
-
Constructor Details
-
PdfSecurityOptions
public PdfSecurityOptions()
-
Method Details
-
getUserPassword
public String getUserPassword()
Gets the user password.
-
setUserPassword
public void setUserPassword(String value)
Sets the user password.
-
getOwnerPassword
public String getOwnerPassword()
Gets the owner password of the document.
-
setOwnerPassword
public void setOwnerPassword(String value)
Sets the owner password of the document.
-
getPrintPermission
public boolean getPrintPermission()
Gets the permission to print pdf document.
-
setPrintPermission
public void setPrintPermission(boolean value)
Sets the permission to print pdf document.
-
getModifyDocumentPermission
public boolean getModifyDocumentPermission()
Gets the permission to modify pdf document.
-
setModifyDocumentPermission
public void setModifyDocumentPermission(boolean value)
Sets the permission to modify pdf document.
-
getModifyAnnotationsPermission
public boolean getModifyAnnotationsPermission()
Gets the permission to comment on the document.
-
setModifyAnnotationsPermission
public void setModifyAnnotationsPermission(boolean value)
Sets the permission to comment on the document.
-
-
-
-
-
getAssembleDocumentPermission
public boolean getAssembleDocumentPermission()
Gets the permission to insert, rotate, or delete pages and create bookmarks or thumbnail images even if ModifyDocumentPermission is not set.
-
setAssembleDocumentPermission
public void setAssembleDocumentPermission(boolean value)
Sets the permission to insert, rotate, or delete pages and create bookmarks or thumbnail images even if ModifyDocumentPermission is not set.
-
getFullQualityPrintPermission
public boolean getFullQualityPrintPermission()
Gets the permission to print in high quality.
-
setFullQualityPrintPermission
public void setFullQualityPrintPermission(boolean value)
Sets the permission to print in high quality.
-