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

/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DValidity.java41 * notAfter Time
48 /** the value of notAfter field of the structure */
49 private final Date notAfter; field in class:Validity
53 public Validity(Date notBefore, Date notAfter) { argument
55 this.notAfter = notAfter;
66 * Returns the value of notAfter field of the structure.
69 return notAfter;
96 values[1] = validity.notAfter;
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
H A DX509CertImpl.java76 private volatile long notAfter = -1; field in class:X509CertImpl
208 long result = notAfter;
210 notAfter = result = tbsCert.getValidity().getNotAfter().getTime();
/libcore/luni/src/test/java/tests/security/cert/
H A DX509CertSelectorTest.java1701 protected Date notAfter = null; field in class:X509CertSelectorTest.TestCert
1762 public TestCert(Date notBefore, Date notAfter) { argument
1763 setPeriod(notBefore, notAfter);
1808 public void setPeriod(Date notBefore, Date notAfter) { argument
1810 this.notAfter = notAfter;
1989 notBefore, notAfter);

Completed in 110 milliseconds