package at.gv.egovernment.moa.spss.api.common; import org.w3c.dom.NodeList; public interface ExtendedCertificateCheckResult { /** * Gets the result code. * * @return The result code. */ public int getMajorCode(); /** * Gets descriptive information. * * @return Descriptive information. */ public String getMajorInfo(); /** * Gets the result code. * * @return The result code. */ public int getMinorCode(); /** * Gets descriptive information. * * @return Descriptive information. */ public String getMinorInfo(); }