-
public interface ICryptRepository
-
-
Method Summary
Modifier and Type Method Description abstract IntegerstoredEncryptionLevel()abstract BooleanisSSInAppDataMigrated()abstract UnitupdateIsSSInAppDataMigrated(Boolean migrated)abstract IntegermigrationFailureCount()abstract StringlocalEncryptionKey()abstract UnitupdateLocalEncryptionKey(String key)abstract UnitupdateEncryptionLevel(Integer configEncryptionLevel)abstract UnitupdateMigrationFailureCount(Boolean migrationSuccessful)-
-
Method Detail
-
storedEncryptionLevel
abstract Integer storedEncryptionLevel()
-
isSSInAppDataMigrated
abstract Boolean isSSInAppDataMigrated()
-
updateIsSSInAppDataMigrated
abstract Unit updateIsSSInAppDataMigrated(Boolean migrated)
-
migrationFailureCount
abstract Integer migrationFailureCount()
-
localEncryptionKey
abstract String localEncryptionKey()
-
updateLocalEncryptionKey
abstract Unit updateLocalEncryptionKey(String key)
-
updateEncryptionLevel
abstract Unit updateEncryptionLevel(Integer configEncryptionLevel)
-
updateMigrationFailureCount
abstract Unit updateMigrationFailureCount(Boolean migrationSuccessful)
-
-
-
-