Package com.itextpdf.text.pdf
Class PdfSigLockDictionary
- java.lang.Object
-
- com.itextpdf.text.pdf.PdfObject
-
- com.itextpdf.text.pdf.PdfDictionary
-
- com.itextpdf.text.pdf.PdfSigLockDictionary
-
- All Implemented Interfaces:
java.io.Serializable
public class PdfSigLockDictionary extends PdfDictionary
A signature field lock dictionary.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PdfSigLockDictionary.LockAction
Enumerates the different actions of a signature lock.static class
PdfSigLockDictionary.LockPermissions
Enumerates the different levels of permissions.
-
Constructor Summary
Constructors Constructor Description PdfSigLockDictionary()
Creates a signature lock valid for all fields in the document.PdfSigLockDictionary(PdfSigLockDictionary.LockAction action, PdfSigLockDictionary.LockPermissions p, java.lang.String... fields)
Creates a signature lock for specific fields in the document.PdfSigLockDictionary(PdfSigLockDictionary.LockAction action, java.lang.String... fields)
Creates a signature lock for specific fields in the document.PdfSigLockDictionary(PdfSigLockDictionary.LockPermissions p)
Creates a signature lock for all fields in the document, setting specific permissions.
-
Method Summary
-
Methods inherited from class com.itextpdf.text.pdf.PdfDictionary
checkType, clear, contains, get, getAsArray, getAsBoolean, getAsDict, getAsIndirectObject, getAsName, getAsNumber, getAsStream, getAsString, getDirectObject, getKeys, isCatalog, isFont, isOutlineTree, isPage, isPages, merge, mergeDifferent, put, putAll, putEx, remove, size, toPdf, toString
-
Methods inherited from class com.itextpdf.text.pdf.PdfObject
canBeInObjStm, getBytes, getIndRef, isArray, isBoolean, isDictionary, isIndirect, isName, isNull, isNumber, isStream, isString, length, setContent, setIndRef, type
-
-
-
-
Constructor Detail
-
PdfSigLockDictionary
public PdfSigLockDictionary()
Creates a signature lock valid for all fields in the document.
-
PdfSigLockDictionary
public PdfSigLockDictionary(PdfSigLockDictionary.LockPermissions p)
Creates a signature lock for all fields in the document, setting specific permissions.
-
PdfSigLockDictionary
public PdfSigLockDictionary(PdfSigLockDictionary.LockAction action, java.lang.String... fields)
Creates a signature lock for specific fields in the document.
-
PdfSigLockDictionary
public PdfSigLockDictionary(PdfSigLockDictionary.LockAction action, PdfSigLockDictionary.LockPermissions p, java.lang.String... fields)
Creates a signature lock for specific fields in the document.
-
-