package at.gv.egiz.param_tests.testinfo; import org.apache.commons.lang3.tuple.Pair; import org.apache.pdfbox.preflight.ValidationResult; /** * Test information class for PDF-A conformance tests. * * @author mtappler * */ public class PDFATestInfo extends TestInfo { /** * the validation result before signing for the input PDF file */ private Pair resultBeforeSign; /** * the validation result after signing for the output PDF file */ private Pair resultAfterSign; public Pair getResultBeforeSign() { return resultBeforeSign; } public void setResultBeforeSign( Pair resultBeforeSign) { this.resultBeforeSign = resultBeforeSign; } public Pair getResultAfterSign() { return resultAfterSign; } public void setResultAfterSign( Pair resultAfterSign) { this.resultAfterSign = resultAfterSign; } }