package at.gv.egovernment.moa.spss.api.common; import org.w3c.dom.NodeList; /** * Object encapsulating the result of a signature verification. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface CheckResult { /** * Gets the result code. * * @return The result code. */ public int getCode(); /** * Gets descriptive information. * * @return Descriptive information. */ public NodeList getInfo(); }