Sean's comments

This commit is contained in:
Mikhail Yankelevich 2026-01-19 10:13:53 +00:00
parent a7fd46782a
commit 940ec5078c
2 changed files with 8 additions and 6 deletions

View File

@ -1206,13 +1206,13 @@ public class KeyStore {
/**
* Returns the creation {@code Instant} value
* of the entry identified by the given alias.
* Returns the instant that the entry identified
* by the given alias was created.
*
* @param alias the alias name
*
* @return the creation instant of this entry, or {@code null} if the given
* alias does not exist
* @return the instant that the entry identified by the given alias
* was created, or {@code null} if the given alias does not exist.
*
* @throws KeyStoreException if the keystore has not been initialized
* (loaded).

View File

@ -129,8 +129,10 @@ public abstract class KeyStoreSpi {
public abstract Date engineGetCreationDate(String alias);
/**
* Returns the creation {@code Instant} value
* of the entry identified by the given alias.
* Returns the instant that the entry identified
* by the given alias was created.
* <p>
* Subclasses should override this method to directly return an instant.
*
* @implSpec
* The default implementation calls {@code engineGetCreationDate(alias)}