Package | Description |
---|---|
org.apache.pdfbox.pdmodel |
The PDModel package represents a high level API for creating and manipulating PDF documents.
|
org.apache.pdfbox.pdmodel.fdf |
The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document.
|
org.apache.pdfbox.pdmodel.interactive.digitalsignature.visible |
This is the visual signature part that help creating the visual representation for the digital signature.
|
org.apache.pdfbox.pdmodel.interactive.form |
The interactive package contains classes that deal with interactive annotations such as textfields and buttons.
|
Modifier and Type | Method | Description |
---|---|---|
PDSignature |
PDDocument.getLastSignatureDictionary() |
This will return the last signature.
|
PDSignature |
PDDocument.getSignatureDictionary() |
Deprecated.
use
PDDocument.getLastSignatureDictionary() instead. |
Modifier and Type | Method | Description |
---|---|---|
java.util.List<PDSignature> |
PDDocument.getSignatureDictionaries() |
Retrieve all signature dictionaries from the document.
|
Modifier and Type | Method | Description |
---|---|---|
void |
PDDocument.addSignature(PDSignature sigObject,
SignatureInterface signatureInterface) |
Add a signature.
|
void |
PDDocument.addSignature(PDSignature sigObject,
SignatureInterface signatureInterface,
SignatureOptions options) |
This will add a signature to the document.
|
Modifier and Type | Method | Description |
---|---|---|
PDSignature |
FDFCatalog.getSignature() |
This will get the signature or null if there is none.
|
Modifier and Type | Method | Description |
---|---|---|
void |
FDFCatalog.setSignature(PDSignature sig) |
This will set the signature that is associated with this catalog.
|
Modifier and Type | Method | Description |
---|---|---|
PDSignature |
PDFTemplateStructure.getPdSignature() |
Gets PDSignature
|
Modifier and Type | Method | Description |
---|---|---|
void |
PDFTemplateStructure.setPdSignature(PDSignature pdSignature) |
Sets PDSignature
|
Modifier and Type | Method | Description |
---|---|---|
PDSignature |
PDSignatureField.getSignature() |
Get the signature dictionary.
|
Modifier and Type | Method | Description |
---|---|---|
void |
PDSignatureField.setSignature(PDSignature value) |
Add a signature dictionary to the signature field.
|