package at.gv.egovernment.moa.spss.api.xmlverify; /** * Contains information about the verification status of references contained * in the signature. * * @author Patrick Peck * @version $Id$ */ public interface ReferencesCheckResult { /** * Gets the check code. * * @return A numerical representation of the result of the reference check. */ public int getCode(); /** * Gets the additional information about the result. * * @return Additional information about the result. */ public ReferencesCheckResultInfo getInfo(); }