Class VerifiedSignature
- java.lang.Object
-
- com.ironsoftware.ironpdf.signature.VerifiedSignature
-
public class VerifiedSignature extends Object
A class that represents a verified digital signature for a PDF document.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFilter()
Signature filterString
getSignatureName()
Gets the field name of the digital signature.String
getSigningContact()
Gets the contact person or email address for signing related inquiries (optional).Instant
getSigningDate()
Gets date and time of the digital signature.String
getSigningLocation()
Gets physical location the PDF was signed (optional).String
getSigningReason()
Gets reason the PDF was signed (optional).boolean
isValid()
If the signature is valid,
-
-
-
Method Detail
-
getSignatureName
public String getSignatureName()
Gets the field name of the digital signature.- Returns:
- the signature name
-
getSigningContact
public String getSigningContact()
Gets the contact person or email address for signing related inquiries (optional).- Returns:
- the contact
-
getSigningReason
public String getSigningReason()
Gets reason the PDF was signed (optional).- Returns:
- the signing reason
-
getSigningLocation
public String getSigningLocation()
Gets physical location the PDF was signed (optional).- Returns:
- the signing location
-
getSigningDate
public Instant getSigningDate()
Gets date and time of the digital signature.- Returns:
- the signing date
-
isValid
public boolean isValid()
If the signature is valid,- Returns:
- the boolean
-
getFilter
public String getFilter()
Signature filter- Returns:
- Signature filter
-
-