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

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CertSelector.java103 private Date privateKeyValid; field in class:X509CertSelector
470 * Sets the privateKeyValid criterion. The specified date must fall
472 * <code>X509Certificate</code>. If <code>null</code>, no privateKeyValid
478 * @param privateKeyValid the <code>Date</code> to check (or
482 public void setPrivateKeyValid(Date privateKeyValid) { argument
483 if (privateKeyValid == null) {
484 this.privateKeyValid = null;
486 this.privateKeyValid = (Date)privateKeyValid.clone();
1483 * Returns the privateKeyValid criterio
[all...]

Completed in 47 milliseconds