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 Summary
All 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
- 
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. 
 - 
 
 -