public interface ISecurity extends IBaseSecurity
| Modifier and Type | Method and Description |
|---|---|
void |
deleteSecureKeyValuePairs(java.lang.String[] keys,
java.lang.String publicAccessName,
ISecurityResultCallback callback)
Deletes from the device internal storage the entry/entries containing the specified key names.
|
void |
getSecureKeyValuePairs(java.lang.String[] keys,
java.lang.String publicAccessName,
ISecurityResultCallback callback)
Retrieves from the device internal storage the entry/entries containing the specified key names.
|
boolean |
isDeviceModified()
Returns if the device has been modified in anyhow
|
void |
setSecureKeyValuePairs(SecureKeyPair[] keyValues,
java.lang.String publicAccessName,
ISecurityResultCallback callback)
Stores in the device internal storage the specified item/s.
|
getAPIGroup, getAPIVersionvoid deleteSecureKeyValuePairs(java.lang.String[] keys,
java.lang.String publicAccessName,
ISecurityResultCallback callback)
keys - Array with the key names to delete.publicAccessName - The name of the shared internal storage object (if needed).callback - callback to be executed upon function result.void getSecureKeyValuePairs(java.lang.String[] keys,
java.lang.String publicAccessName,
ISecurityResultCallback callback)
keys - Array with the key names to retrieve.publicAccessName - The name of the shared internal storage object (if needed).callback - callback to be executed upon function result.boolean isDeviceModified()
void setSecureKeyValuePairs(SecureKeyPair[] keyValues, java.lang.String publicAccessName, ISecurityResultCallback callback)
keyValues - Array containing the items to store on the device internal memory.publicAccessName - The name of the shared internal storage object (if needed).callback - callback to be executed upon function result.