Package com.dropbox.core
Interface DbxSessionStore
-
- All Known Implementing Classes:
DbxStandardSessionStore
public interface DbxSessionStore
An interface that lets you save, retrieve, and clear a single value in the user's web session.If your web app uses the standard Java Servlet API, just use
DbxStandardSessionStore
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clear()
java.lang.String
get()
void
set(java.lang.String value)
-