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

import at.gv.egovernment.moa.spss.api.xmlverify.ManifestRefsCheckResultInfo;

/**
 * Default implementation of <code>ManifestRefsCheckResultInfo</code>.
 * 
 * @author Fatemeh Philippi
 * @version $Id$
 */
public class ManifestRefsCheckResultInfoImpl
  extends ReferencesCheckResultInfoImpl
  implements ManifestRefsCheckResultInfo {

  /** The position of the signature reference containing the reference to the 
   * manifest being described by this object.*/
  private int referringSignatureReference;

  /**
   * Sets the position of the signature reference containing the reference to 
   * the manifest being described by this object.
   * @param referringSignatureReference The position of the signature reference.
   */
  public void setReferringSignatureReference(int referringSignatureReference) {
    this.referringSignatureReference = referringSignatureReference;
  }

  public int getReferringSignatureReference() {
    return referringSignatureReference;
  }

}