package at.gv.egiz.eid.authhandler.modules.sigverify.moasig.api.data; /** * XML signature verification result. * * @author tlenz * */ public interface IXmlSignatureVerificationResponse extends IGenericSignatureVerificationResponse { /** * Returns the xmlDSIGManifestCheckCode. * * @return int */ int getXmlDsigManifestCheckCode(); /** * Returns the xmlDsigSubjectName. * * @return String */ String getXmlDsigSubjectName(); /** * Returns the xmlDSIGManigest. * * @return boolean */ boolean isXmlDsigManigest(); /** * Returns the the resulting code of the signature manifest check. * * @return The code of the sigature manifest check. */ int getSignatureManifestCheckCode(); }