Information about a signature field returned by SignDocDocument.getSignature(). More...
Public Member Functions | |
String | getFieldName () throws SignDocException |
Get the name of the signature field. | |
int | getFieldPage () throws SignDocException |
Get the page number of the signature field. | |
synchronized int | getSignatureType () throws SignDocException |
Get the type of the signature. | |
synchronized int | getClearedIndex () throws SignDocException |
Get the index of the signature at which this signature has been removed. | |
synchronized int | getDocMDP () throws SignDocException |
Get the DocMDP P value of a certification signature. | |
synchronized int | getLockMDP () throws SignDocException |
Get the lock MDP value. | |
synchronized byte[] | getSigningCertificate () throws SignDocException |
Get the signing certificate as DER-encoded blob. | |
synchronized String | getSignerCommonName () throws SignDocException |
Get the common name from the signing certificate. | |
synchronized String | getSignerEmail () throws SignDocException |
Get the email address from the signing certificate. | |
synchronized String | getTimeStamp () throws SignDocException |
Get the time stamp of the signature. | |
synchronized int | getChangeCount () throws SignDocException |
Get the number of changes that have been made after this signature. | |
synchronized SignDocChange | getChange (int aIndex) throws SignDocException |
Get a SignDocChange object for a change. | |
synchronized int | getBiometricEncryption () throws SignDocException |
Get the encryption method used for biometric data of the signature field. | |
Protected Member Functions | |
void | finalize () throws Throwable |
Finalize this object. |
Information about a signature field returned by SignDocDocument.getSignature().
void de.softpro.doc.SignDocSignature.finalize | ( | ) | throws Throwable [protected] |
Finalize this object.
Do not call this method unless you know what you are doing.
synchronized int de.softpro.doc.SignDocSignature.getBiometricEncryption | ( | ) | throws SignDocException |
Get the encryption method used for biometric data of the signature field.
synchronized SignDocChange de.softpro.doc.SignDocSignature.getChange | ( | int | aIndex ) | throws SignDocException |
Get a SignDocChange object for a change.
[in] | aIndex | Zero-based index of the change. |
synchronized int de.softpro.doc.SignDocSignature.getChangeCount | ( | ) | throws SignDocException |
Get the number of changes that have been made after this signature.
For PDF documents, you can find out what changes have been made to the document between this signature and the next one (or after the last signature if this is the last signature).
Computing the changes can be expensive.
Changes are not reported in any particular order; before presenting them to a user, you should group them.
Detecting and categorizing changes is work in progress. Moreover, it will never be bug-compatible with Adobe products.
synchronized int de.softpro.doc.SignDocSignature.getClearedIndex | ( | ) | throws SignDocException |
Get the index of the signature at which this signature has been removed.
This function always returns -1 for TIFF document.
synchronized int de.softpro.doc.SignDocSignature.getDocMDP | ( | ) | throws SignDocException |
Get the DocMDP P value of a certification signature.
The DocMDP P value specifies what modifications to the document are allowed by the certification signature.
String de.softpro.doc.SignDocSignature.getFieldName | ( | ) | throws SignDocException |
Get the name of the signature field.
int de.softpro.doc.SignDocSignature.getFieldPage | ( | ) | throws SignDocException |
Get the page number of the signature field.
synchronized int de.softpro.doc.SignDocSignature.getLockMDP | ( | ) | throws SignDocException |
Get the lock MDP value.
The lock MDP value specifies what modifications to the document are allowed by the signature lock dictionary.
synchronized int de.softpro.doc.SignDocSignature.getSignatureType | ( | ) | throws SignDocException |
Get the type of the signature.
synchronized String de.softpro.doc.SignDocSignature.getSignerCommonName | ( | ) | throws SignDocException |
Get the common name from the signing certificate.
synchronized String de.softpro.doc.SignDocSignature.getSignerEmail | ( | ) | throws SignDocException |
Get the email address from the signing certificate.
synchronized byte [] de.softpro.doc.SignDocSignature.getSigningCertificate | ( | ) | throws SignDocException |
Get the signing certificate as DER-encoded blob.
synchronized String de.softpro.doc.SignDocSignature.getTimeStamp | ( | ) | throws SignDocException |
Get the time stamp of the signature.
You have to use SignDocDocument.verifySignature() to find out whether the time stamp can be trusted.