package at.gv.egovernment.moa.spss.api.cmsverify; import at.gv.egovernment.moa.spss.api.common.CheckResult; import at.gv.egovernment.moa.spss.api.common.SignerInfo; /** * Contains detailed information about the verification of a signature. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface VerifyCMSSignatureResponseElement { /** * Gets a SignerInfo element according to CMS. * * @return The SignerInfo element according to CMS. */ public SignerInfo getSignerInfo(); /** * Gets the result of the signature verification. * * @return The result of the signature verification. */ public CheckResult getSignatureCheck(); /** * Gets the result of the certificate verification. * * @return The result of the certificate verification. */ public CheckResult getCertificateCheck(); }