/** * */ package at.gv.egiz.pdfas.api; import java.util.List; import at.gv.egiz.pdfas.api.analyze.AnalyzeParameters; import at.gv.egiz.pdfas.api.analyze.AnalyzeResult; import at.gv.egiz.pdfas.api.commons.SignatureProfile; import at.gv.egiz.pdfas.api.exceptions.PdfAsException; import at.gv.egiz.pdfas.api.sign.SignParameters; import at.gv.egiz.pdfas.api.sign.SignResult; import at.gv.egiz.pdfas.api.verify.VerifyAfterAnalysisParameters; import at.gv.egiz.pdfas.api.verify.VerifyAfterReconstructXMLDsigParameters; import at.gv.egiz.pdfas.api.verify.VerifyParameters; import at.gv.egiz.pdfas.api.verify.VerifyResult; import at.gv.egiz.pdfas.api.verify.VerifyResults; import at.gv.egiz.pdfas.api.xmldsig.ReconstructXMLDsigAfterAnalysisParameters; import at.gv.egiz.pdfas.api.xmldsig.ReconstructXMLDsigParameters; import at.gv.egiz.pdfas.api.xmldsig.ReconstructXMLDsigResult; /** * The PDF-AS API main interface. * *

* Create an Object implementing this interface using the proper factory. *

* * @author wprinz * @author exthex */ public interface PdfAs { // 23.11.2010 changed by exthex - added: // reconstructXMLDSIG(ReconstructXMLDsigParameters reconstructXMLDsigParameters) // reconstructXMLDSIG(ReconstructXMLDsigAfterAnalysisParameters reconstructXMLDsigParameters) // verify(VerifyAfterReconstructXMLDsigParameters verifyAfterReconstructXMLDsigParameters) /** * Signs a PDF document using PDF-AS. * * @param signParameters * The sign parameters. * @return Returns the signed document plus additional information. * @throws PdfAsException * Thrown, if an error occurs. * * @see SignParameters * @see SignResult */ public SignResult sign(SignParameters signParameters) throws PdfAsException; /** * Verifies a document with (potentially multiple) PDF-AS signatures. * * @param verifyParameters * The verify parameters. * @return Returns the verification results. * @throws PdfAsException * Thrown, if an error occurs. * * @see VerifyParameters * @see VerifyResults * @see VerifyResult */ public VerifyResults verify(VerifyParameters verifyParameters) throws PdfAsException; /** * Analyzes a document for signatures and returns a verify-able list of such. * * @param analyzeParameters * The analyzation parameters. * @return Returns a list of verify-able signatures that were found in the * document. * @throws PdfAsException * Thrown on error. * * @see AnalyzeParameters * @see AnalyzeResult * @see {@link #verify(AnalyzeResult)} */ public AnalyzeResult analyze(AnalyzeParameters analyzeParameters) throws PdfAsException; /** * Reconstruct the from the given parameters. * * @param reconstructXMLDsigParameters * The data from which to reconstruct the xmldsig * @return a list of xmldsigs, one for each signature in the document * @throws PdfAsException if the reconstruction fails */ public ReconstructXMLDsigResult reconstructXMLDSIG(ReconstructXMLDsigParameters reconstructXMLDsigParameters) throws PdfAsException; /** * Reconstruct the from the given parameters. * * @param reconstructXMLDsigParameters * The data from which to reconstruct the xmldsigs * @return a list of xmldsigs, one for each signature in the document * @throws PdfAsException */ public ReconstructXMLDsigResult reconstructXMLDSIG(ReconstructXMLDsigAfterAnalysisParameters reconstructXMLDsigParameters) throws PdfAsException; /** * Verifies a list of signatures that have been analyzed previously. * * @param verifyAfterAnalysisParameters The parameters. * * @return Returns the verification results. * @throws PdfAsException * Thrown on error. * * @see AnalyzeResult * @see VerifyAfterAnalysisParameters * @see VerifyResults * @see VerifyResult * @see {@link #analyze(AnalyzeParameters)} */ public VerifyResults verify(VerifyAfterAnalysisParameters verifyAfterAnalysisParameters) throws PdfAsException; /** * Verifies a list of signatures that have been analyzed previously and the xmldsigs have been reconstructed. * * @param verifyAfterReconstructXMLDsigParameters * The parameters. * @return the verification results. * @throws PdfAsException * Thrown on error. */ public VerifyResults verify(VerifyAfterReconstructXMLDsigParameters verifyAfterReconstructXMLDsigParameters) throws PdfAsException; /** * Reloads the configuration from the work directory. * * @throws PdfAsException * Thrown, if an error occurs. */ public void reloadConfig() throws PdfAsException; /** * Returns the list of information objects about activated profiles available in the * configuration. * *

* Note: Currently the profile information consists of the profile Id and the * MOA Key Id only. *

*

* Note: In near future the profile management will be moved out of the config * file into an API class representation of the profiles which may render this * (and related) methods obsolete. *

* * @return Returns the list of {@link SignatureProfile} objects with * information about active profiles available in the configuration. * @throws PdfAsException * Thrown on error. * * @see SignatureProfile */ public List getProfileInformation() throws PdfAsException; }