
com.dropbox.core.DbxSessionStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
A client library for Dropbox's HTTP-based "Core API".
The newest version!
package com.dropbox.core;
/**
* 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
* {@link DbxStandardSessionStore}.
*
*/
public interface DbxSessionStore
{
public String get();
public void set(String value);
public void clear();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy