Package com.sshtools.agent
Interface KeyStoreListener
public interface KeyStoreListener
An interface for listening to events in the agent keystore.
- Author:
- lee
-
Method Summary
Modifier and TypeMethodDescriptionvoid
A key has been added to the keystore.void
onDeleteAllKeys
(KeyStore keystore) All the keys were deleted from the keystore.void
onDeleteKey
(KeyStore keystore) A key has been deleted.void
onKeyOperation
(KeyStore keystore, String operation) An operation was performed on the keystore.void
The keystore has been locked.void
The keystore has been unlocked.
-
Method Details
-
onDeleteKey
A key has been deleted.- Parameters:
keystore
-
-
onLock
The keystore has been locked.- Parameters:
keystore
-
-
onUnlock
The keystore has been unlocked.- Parameters:
keystore
-
-
onAddKey
A key has been added to the keystore.- Parameters:
keystore
-
-
onDeleteAllKeys
All the keys were deleted from the keystore.- Parameters:
keystore
-
-
onKeyOperation
An operation was performed on the keystore.- Parameters:
keystore
-operation
-
-