package at.gv.egovernment.moa.spss.api.xmlverify;


/**
 * Contains the results of manifest checks according to XMLDsig.
 * 
 * @author Patrick Peck
 * @author Stephan Grill
 * @version $Id$
 */
public interface ManifestRefsCheckResult {
  /**
   * Gets the check code.
   * 
   * @return A numerical representation of the result of the manifest check.
   */
  public int getCode();
  /**
   * Gets the reference to the manifest.
   * 
   * @return The reference to the manifest.
   */
  public ManifestRefsCheckResultInfo getInfo();
}