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