Home | History | Annotate | Download | only in x509

Lines Matching defs:nextUpdate

55  *        nextUpdate              Time OPTIONAL,
76 /** the value of nextUpdate of the structure */
77 private final Date nextUpdate;
195 Name issuer, Date thisUpdate, Date nextUpdate,
202 this.nextUpdate = nextUpdate;
237 * Returns the value of nextUpdate field of the structure.
240 return nextUpdate;
277 && (nextUpdate == null
278 ? that.nextUpdate == null
279 : nextUpdate.getTime() / 1000
280 == that.nextUpdate.getTime() / 1000)
302 sb.append("\nNext Update: ").append(nextUpdate).append('\n');
328 Time.ASN1, // nextUpdate
362 values[4] = tbs.nextUpdate;