StubKeyStoreClient
public
class
StubKeyStoreClient
extends Object
implements
IKeyStoreClient
java.lang.Object | |
↳ | com.android.tradefed.util.keystore.StubKeyStoreClient |
Default stub implementation for KeyStore Client.
Summary
Public constructors | |
---|---|
StubKeyStoreClient()
|
Public methods | |
---|---|
boolean
|
containsKey(String key)
A method to check if the key store contains a given key. |
String
|
fetchKey(String key)
A method to fetch a given key inside the key store. |
boolean
|
isAvailable()
A method to check whether or not we have a valid key store to talk to. |
Public constructors
StubKeyStoreClient
public StubKeyStoreClient ()
Public methods
containsKey
public boolean containsKey (String key)
A method to check if the key store contains a given key.
Parameters | |
---|---|
key |
String : to check existence for. |
Returns | |
---|---|
boolean |
true if the given key exists. |
fetchKey
public String fetchKey (String key)
A method to fetch a given key inside the key store.
Parameters | |
---|---|
key |
String : to fetch inside the key store. |
Returns | |
---|---|
String |
the String value of the key. It will return null if key
is not found. |
isAvailable
public boolean isAvailable ()
A method to check whether or not we have a valid key store to talk to.
Returns | |
---|---|
boolean |
true if we have a valid key store, false otherwise. |