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

/libcore/luni/src/main/java/java/security/
H A DCodeSigner.java30 private CertPath signerCertPath; field in class:CodeSigner
40 * @param signerCertPath
46 * if {@code signerCertPath} is {@code null}.
48 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) { argument
49 if (signerCertPath == null) {
50 throw new NullPointerException("signerCertPath == null");
52 this.signerCertPath = signerCertPath;
75 if (!signerCertPath.equals(that.signerCertPath)) {
[all...]
H A DTimestamp.java34 private CertPath signerCertPath; field in class:Timestamp
45 * @param signerCertPath
49 * signerCertPath} is {@code null}.
51 public Timestamp(Date timestamp, CertPath signerCertPath) { argument
55 if (signerCertPath == null) {
56 throw new NullPointerException("signerCertPath == null");
60 this.signerCertPath = signerCertPath;
85 && signerCertPath.equals(that.signerCertPath);
[all...]

Completed in 171 milliseconds