Home | History | Annotate | Download | only in x509

Lines Matching refs:nextUpdate

56  *        nextUpdate              Time OPTIONAL,
78 // the value of nextUpdate of the structure
79 private final Date nextUpdate;
208 * by which the next CRL will be issued in the nextUpdate field (section
226 this.nextUpdate = null;
234 * Note that if the version of CRL is 1, then nextUpdate,
241 * @param nextUpdate: Time
246 Name issuer, Date thisUpdate, Date nextUpdate,
252 this.nextUpdate = nextUpdate;
259 Name issuer, Date thisUpdate, Date nextUpdate,
266 this.nextUpdate = nextUpdate;
305 * Returns the value of nextUpdate field of the structure.
306 * @return nextUpdate
309 return nextUpdate;
350 && ((nextUpdate == null)
351 ? tbscert.nextUpdate == null
352 : ((nextUpdate.getTime() / 1000)
353 == (tbscert.nextUpdate.getTime() / 1000)))
382 buffer.append("\nNext Update: ").append(nextUpdate).append('\n');
410 Time.ASN1, // nextUpdate
445 values[4] = tbs.nextUpdate;