package at.gv.egovernment.moa.spss.api.xmlverify;
import org.w3c.dom.NodeList;
/**
* Additional information contained in a ReferencesCheckResult
.
*
* @author Patrick Peck
* @version $Id$
*/
public interface ReferencesCheckResultInfo {
/**
* Gets the additional info of the failed dsig:reference
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();
}