Uses of Class
com.itextpdf.signatures.validation.report.ReportItem
-
Packages that use ReportItem Package Description com.itextpdf.signatures.validation com.itextpdf.signatures.validation.report -
-
Uses of ReportItem in com.itextpdf.signatures.validation
Method parameters in com.itextpdf.signatures.validation with type arguments of type ReportItem Modifier and Type Method Description static void
SafeCalling. onExceptionLog(ThrowingAction action, ValidationReport report, java.util.function.Function<java.lang.Exception,ReportItem> reportItemCreator)
Adds a report item to the report when an exception is thrown in the action.static <T> T
SafeCalling. onExceptionLog(ThrowingSupplier<T> action, T defaultValue, ValidationReport report, java.util.function.Function<java.lang.Exception,ReportItem> reportItemCreator)
Adds a report item to the report when an exception is thrown in the action.static void
SafeCalling. onRuntimeExceptionLog(Action action, ValidationReport report, java.util.function.Function<java.lang.Exception,ReportItem> reportItemCreator)
Adds a report item to the report when an exception is thrown in the action.static <T> T
SafeCalling. onRuntimeExceptionLog(java.util.function.Supplier<T> action, T defaultValue, ValidationReport report, java.util.function.Function<java.lang.Exception,ReportItem> reportItemCreator)
Adds a report item to the report when an exception is thrown in the action. -
Uses of ReportItem in com.itextpdf.signatures.validation.report
Subclasses of ReportItem in com.itextpdf.signatures.validation.report Modifier and Type Class Description class
CertificateReportItem
Report item to be used for single certificate related failure or log message.Fields in com.itextpdf.signatures.validation.report with type parameters of type ReportItem Modifier and Type Field Description private java.util.List<ReportItem>
ValidationReport. reportItems
Methods in com.itextpdf.signatures.validation.report that return ReportItem Modifier and Type Method Description ReportItem
ReportItem. setStatus(ReportItem.ReportItemStatus status)
Set report item status that determines validation result this report item corresponds to.Methods in com.itextpdf.signatures.validation.report that return types with arguments of type ReportItem Modifier and Type Method Description java.util.List<ReportItem>
ValidationReport. getFailures()
Get all failures recognized during a validation process.java.util.List<ReportItem>
ValidationReport. getLogs()
Get all log messages reported during a validation process.Methods in com.itextpdf.signatures.validation.report with parameters of type ReportItem Modifier and Type Method Description void
ValidationReport. addReportItem(ReportItem item)
Add new report item to the overall validation result.
-