Searched defs:trustCertificate (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/security/
H A DKeyStore.java1348 private final Certificate trustCertificate; field in class:KeyStore.TrustedCertificateEntry
1354 * @param trustCertificate
1357 * if {@code trustCertificate} is {@code null}.
1359 public TrustedCertificateEntry(Certificate trustCertificate) { argument
1360 if (trustCertificate == null) {
1361 throw new NullPointerException("trustCertificate == null");
1363 this.trustCertificate = trustCertificate;
1372 return trustCertificate;
1384 return "Trusted certificate entry:\n" + trustCertificate;
[all...]

Completed in 42 milliseconds