package at.gv.egovernment.moa.spss.api.xmlverify; import java.util.List; import at.gv.egovernment.moa.spss.api.common.CheckResult; import at.gv.egovernment.moa.spss.api.common.SignerInfo; /** * Object that encapsulates the response on a request to verify an XML * signature. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface VerifyXMLSignatureResponse { /** * Gets a SignerInfo element according to XMLDSig. * * @return A SignerInfo element according to XMLDSig. */ public SignerInfo getSignerInfo(); /** * Gets datas signed by the signatory. * * @return The signed datas. */ public List getHashInputDatas(); /** * Gets source datas elements. * * @return The source datas elements. */ public List getReferenceInputDatas(); /** * Gets the result of the signature verification. * * @return The result of the signature verification. */ public ReferencesCheckResult getSignatureCheck(); /** * Gets the result of the signature manifest verification. * * @return The result of the signature manifest verification. */ public ReferencesCheckResult getSignatureManifestCheck(); /** * Gets XMLDSigManifestCheck elements. * * @return The XMLDSigManifestCheck elements. */ public List getXMLDsigManifestChecks(); /** * Gets the result of the certification verification. * * @return The result of the certificate verification. */ public CheckResult getCertificateCheck(); }