.. java:import:: android.annotation TargetApi .. java:import:: android.os Build .. java:import:: android.util Base64 .. java:import:: com.idopte.scmiddleware Log .. java:import:: org.json JSONArray .. java:import:: org.json JSONException .. java:import:: org.json JSONObject .. java:import:: java.io ByteArrayInputStream .. java:import:: java.nio.charset StandardCharsets .. java:import:: java.security.cert CertificateFactory .. java:import:: java.security.cert X509Certificate .. java:import:: java.util ArrayList .. java:import:: java.util List Certificate =========== .. java:package:: com.idopte.scmapi :noindex: .. java:type:: public class Certificate extends TokenObject This class describes a certificate object. Inherits from \ :java:ref:`TokenObject`\ . Note that the constructor is not intended to be called by user code. Such objects are constructed internally by the API. Methods ------- getIssuer ^^^^^^^^^ .. java:method:: public String getIssuer() :outertype: Certificate Gets the issuer name of the certificate. The string is obtained by using the same rules as for the \ :java:ref:`Certificate.getSubject()`\ string. :return: the issuer name of the certificate. getJCACertificate ^^^^^^^^^^^^^^^^^ .. java:method:: @TargetApi public X509Certificate getJCACertificate() throws SCMException :outertype: Certificate Returns a new \ :java:ref:`X509Certificate`\ object created from the \ :java:ref:`Certificate`\ object. :return: the \ :java:ref:`X509Certificate`\ object. getNotAfter ^^^^^^^^^^^ .. java:method:: public String getNotAfter() :outertype: Certificate Gets the certificate end of validity date. Returned value can be parsed using \ :java:ref:`java.time.ZonedDateTime.parse(CharSequence)`\ . :return: end of validity date, given as a ISO-8601 string. getNotBefore ^^^^^^^^^^^^ .. java:method:: public String getNotBefore() :outertype: Certificate Gets the certificate start of validity date. Returned value can be parsed using \ :java:ref:`java.time.ZonedDateTime.parse(CharSequence)`\ . :return: start of validity date, given as a ISO-8601 string. getRoot ^^^^^^^ .. java:method:: public boolean getRoot() :outertype: Certificate Returns \ ``true``\ if the certificate is a root certificate. :return: \ ``true``\ if the certificate is a root certificate; \ ``false``\ otherwise getSerial ^^^^^^^^^ .. java:method:: public String getSerial() throws SCMException :outertype: Certificate Gets the certificate serial number. :return: the serial number. getSubject ^^^^^^^^^^ .. java:method:: public String getSubject() :outertype: Certificate Gets the subject name of the certificate. The string is extracted from the last (most specific) occurrence of *common name* field. If no such field is defined, the implementation falls back on the first *organizational unit name* field, or the first *organization name* field, or the first *email address* field (in this order). :return: the subject name of the certificate.