using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Amazon.CognitoSync.SyncManager
{
public partial interface ILocalStorage
{
///
/// Caches the Identity Id
///
///
///
[System.Security.SecuritySafeCritical]
void CacheIdentity(string key, string identity);
///
/// Gets the cached identity id
///
///
///
[System.Security.SecuritySafeCritical]
string GetIdentity(string key);
///
/// Removes the Identity Id identified by the key from the cache
///
///
[System.Security.SecuritySafeCritical]
void DeleteCachedIdentity(string key);
}
}