package at.gv.egovernment.moa.spss.api.xmlverify; import java.util.List; /** * Contains parameters used to check the signature manifest. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface SignatureManifestCheckParams { /** * Gets the referential information. * * @return The referential information. */ public List getReferenceInfos(); /** * Gets information on whether signature source data should be returned. * * @return true, if signature source data should be returned, * otherwise false. */ public boolean getReturnReferenceInputData(); }