public static final class

KeyStore.TrustedCertificateEntry

extends Object
implements KeyStore.Entry
java.lang.Object
   ↳ java.security.KeyStore.TrustedCertificateEntry

Class Overview

A KeyStore entry that holds a trusted Certificate.

Summary

Public Constructors
KeyStore.TrustedCertificateEntry(Certificate trustedCert)
Constructs a TrustedCertificateEntry with a trusted Certificate.
Public Methods
Certificate getTrustedCertificate()
Gets the trusted Certficate from this entry.
String toString()
Returns a string representation of this TrustedCertificateEntry.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public KeyStore.TrustedCertificateEntry (Certificate trustedCert)

Constructs a TrustedCertificateEntry with a trusted Certificate.

Parameters
trustedCert the trusted Certificate
Throws
NullPointerException if trustedCert is null

Public Methods

public Certificate getTrustedCertificate ()

Gets the trusted Certficate from this entry.

Returns
  • the trusted Certificate from this entry

public String toString ()

Returns a string representation of this TrustedCertificateEntry.

Returns
  • a string representation of this TrustedCertificateEntry.