-
public interface ModuleDataCleaner.Cleanable
Indicates a module may contain sensitive user data and should be cleaned on logout.
Types of data that should be cleaned: - Persistent data (disk) that may contain userinformation or content. - Retained (static) in-memory data that may contain user info orcontent.
Note that the following types of modules do not need to be cleaned here: - Modules whoseuser data is kept in memory in non-static fields, assuming the app uses a separate instance foreach viewer context. - Modules that remove all persistent data (temp files, etc) when thecatalyst instance is destroyed. This is because logout implies that the instance is destroyed.Apps should enforce this.
-
-
Method Summary
Modifier and Type Method Description abstract void
clearSensitiveData()
-
-
Method Detail
-
clearSensitiveData
abstract void clearSensitiveData()
-
-
-
-