package at.gv.egovernment.moa.spss.api.xmlverify; import org.w3c.dom.NodeList; /** * Additional information contained in a <code>ReferencesCheckResult</code>. * * @author Patrick Peck * @version $Id$ */ public interface ReferencesCheckResultInfo { /** * Gets the additional info of the failed <code>dsig:reference</code> element. * * @return The info elements. */ public NodeList getAnyOtherInfo(); /** * Gets the positions of the failed signature references containing the * references to the manifests being described by this object. * * @return The positions of the failed signature references. */ public int[] getFailedReferences(); }