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