/** * */ package at.gv.egiz.pdfas.api.verify; import java.util.List; /** * The result of the verification of a document. * *

* Currently, this is not more than a list of VerifyResult objects, one for each * verified signature. There may be additional items in future PDF-AS versions. *

* * @author wprinz */ public interface VerifyResults { /** * Returns the List of VerifyResult objects, one for each verified signature. * * @return Returns the List of VerifyResult objects, one for each verified * signature. */ public List getResults(); }