Interface CertificateInfo
-
public interface CertificateInfoContains information of the Certificate/Public Key with which the 3DS SDK operates.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCertificateInfo.CertificateTypeThe type of the Certificate/Public Key with which the 3DS SDK operates.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCertPrefix()Provides the prefix of the configured Certificate/Public Key.java.util.DategetExpiryDate()Provides the date until which the configured Certificate/Public Key is valid.java.lang.StringgetName()Provides the name of the configured Certificate/Public Key.CertificateInfo.CertificateTypegetType()Provides the type of the configured Certificate/Public Key.
-
-
-
Method Detail
-
getType
CertificateInfo.CertificateType getType()
Provides the type of the configured Certificate/Public Key.- Returns:
CertificateInfo.CertificateType
-
getName
java.lang.String getName()
Provides the name of the configured Certificate/Public Key.- Returns:
Stringvalue which represents the Common Name of the Certificate. Public Keys do not have a name.
-
getCertPrefix
java.lang.String getCertPrefix()
Provides the prefix of the configured Certificate/Public Key.- Returns:
Stringvalue containing the initial X characters of the Base64 encoded Certificate/PublicKey.
-
getExpiryDate
java.util.Date getExpiryDate()
Provides the date until which the configured Certificate/Public Key is valid.- Returns:
Dateuntil which the Certificate is valid. Public Keys do not have an expiry date.
-
-