package at.gv.egovernment.moa.spss.api.common; import java.util.List; /** * Trust-Status list information for a specific certificate * All informations and identifiers are according to the Trust-Status List specification * * @author tlenz * */ public interface TslInfos { /** * Gets the issuer country of the TSL * * @return */ public String getTslIssuerCountry(); /** * Gets the Service-Type Status of the TSP, which issues the analyzed certificate * * @return */ public String getServiceTypeStatus(); /** * Gets the Service-Type Identifier of the TSP, which issues the analyzed certificate * * @return */ public String getServiceTypeIdentifier(); /** * Gets additional qualifiers for the analyzed certificate * * @return */ public List getQualifiers(); /** * Gets additional service information for the analyzed certificate * * @return */ public List getAdditionalServiceInformation(); }