Package zendesk.core
Interface SessionStorage
-
public interface SessionStorage
Class holding storage that is tied to a user. Likely to be cleared after an user logs out or the identity changes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
clear()
Clear all session related data.BaseStorage
getAdditionalSdkStorage()
Gets a reference to additional sdk storagejava.io.File
getZendeskCacheDir()
Gets the absolute path to Core SDK specific cache directory.java.io.File
getZendeskDataDir()
Gets the absolute path to Core SDK specific data directory.
-
-
-
Method Detail
-
getAdditionalSdkStorage
BaseStorage getAdditionalSdkStorage()
Gets a reference to additional sdk storage- Returns:
- reference to the additional sdk storage
-
getZendeskCacheDir
java.io.File getZendeskCacheDir()
Gets the absolute path to Core SDK specific cache directory.
-
getZendeskDataDir
java.io.File getZendeskDataDir()
Gets the absolute path to Core SDK specific data directory.
-
clear
void clear()
Clear all session related data.
-
-