Interface PdfModificationDetection
- All Known Implementing Classes:
PdfModificationDetectionImpl
public interface PdfModificationDetection
The interface contains a necessary information about a PDF visual or structure modifications
-
Method Summary
Modifier and Type Method Description booleanareModificationsDetected()Returns information if any modifications have been detectedList<PdfModification>getAnnotationOverlaps()Returns information about annotations overlappingList<PdfModification>getPageDifferences()Returns information if there are missing/added pages between the signed and final revisionsList<PdfModification>getVisualDifferences()Returns information about pages with visual differences between signed and final revisions
-
Method Details
-
getAnnotationOverlaps
List<PdfModification> getAnnotationOverlaps()Returns information about annotations overlapping- Returns:
- a list of
PdfModifications
-
getVisualDifferences
List<PdfModification> getVisualDifferences()Returns information about pages with visual differences between signed and final revisions- Returns:
- a list of
PdfModifications
-
getPageDifferences
List<PdfModification> getPageDifferences()Returns information if there are missing/added pages between the signed and final revisions- Returns:
- a list of
PdfModifications
-
areModificationsDetected
boolean areModificationsDetected()Returns information if any modifications have been detected- Returns:
- TRUE if any modifications have been detected, FALSE otherwise
-