bump integrations-* repos and implement new interface methods

This commit is contained in:
Armin Schrenk
2021-02-24 12:18:24 +01:00
parent c81f3bd972
commit 81091d4bdf
3 changed files with 14 additions and 4 deletions
@@ -68,6 +68,11 @@ public class KeychainManager implements KeychainAccessProvider {
return keychain.getValue() != null;
}
@Override
public boolean isLocked() {
return keychain.getValue() == null || keychain.get().isLocked();
}
/**
* Checks if the keychain knows a passphrase for the given key.
* <p>
@@ -44,4 +44,9 @@ class MapKeychainAccess implements KeychainAccessProvider {
return true;
}
@Override
public boolean isLocked() {
return false;
}
}