All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dropbox.core.DbxSessionStore Maven / Gradle / Ivy

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