public interface CoreListener extends EventListener {
/**
- * Notifies all listeners that a keystore was loaded from a file.
+ * Notifies all listeners that a key store was loaded from a file.
*
* @param keyStoreFile
- * The keystore file
+ * The key store file
* @param keyStore
- * The loaded keystore
+ * The loaded key store
*/
public void keyStoreLoaded(File keyStoreFile, KeyStore keyStore);
/**
- * Notifies all listeners that a keystore file could not be loaded.
+ * Notifies all listeners that a key store file could not be loaded.
*
* @param keyStoreFile
- * The keystore file
+ * The key store file
*/
public void keyStoreNotLoaded(File keyStoreFile);