Searched refs:nextUpdate (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DOCSPResponse.java99 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
596 private final Date nextUpdate; field in class:OCSPResponse.SingleResponse
656 nextUpdate = null;
662 nextUpdate = derVal.data.getGeneralizedTime();
671 nextUpdate = null;
710 if (nextUpdate != null) {
711 until = " until " + nextUpdate;
718 (nextUpdate != null && nowMinusSkew.after(nextUpdate))) {
766 if (nextUpdate !
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLImpl.java77 * nextUpdate ChoiceOfTime OPTIONAL,
106 private Date nextUpdate = null; field in class:X509CRLImpl
189 * @param nextUpdate the Date of the next CRL.
194 this.nextUpdate = nextDate;
202 * @param nextUpdate the Date of the next CRL.
213 this.nextUpdate = nextDate;
241 * @param nextUpdate the Date of the next CRL.
303 if (nextUpdate != null) {
304 if (nextUpdate.getTime() < YR_2050)
305 tmp.putUTCTime(nextUpdate);
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CRLSelector.java410 * nextUpdate component. There is no match if the <code>X509CRL</code>
411 * does not contain a nextUpdate component.
532 * nextUpdate component. There is no match if the
533 * <code>X509CRL</code> does not contain a nextUpdate component.
669 Date nextUpdate = xcrl.getNextUpdate();
670 if (nextUpdate == null) {
672 debug.println("X509CRLSelector.match: nextUpdate null");
682 if (nowMinusSkew.after(nextUpdate)

Completed in 1451 milliseconds