Interface CertificateInfo
public interface CertificateInfo
Contains information of the Certificate/Public Key with which the 3DS SDK operates.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enumThe type of the Certificate/Public Key with which the 3DS SDK operates. -
Method Summary
Modifier and TypeMethodDescriptionProvides the prefix of the configured Certificate/Public Key.Provides the date until which the configured Certificate/Public Key is valid.getName()Provides the name of the configured Certificate/Public Key.getType()Provides the type of the configured Certificate/Public Key.
-
Method Details
-
getType
CertificateInfo.CertificateType getType()Provides the type of the configured Certificate/Public Key.- Returns:
CertificateInfo.CertificateType
-
getName
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
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
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.
-