hirezapi.session.SessionStorage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of HiRezApi-common Show documentation
Show all versions of HiRezApi-common Show documentation
Java-Based API Wrapper for Hi-Rez Studios games.
The newest version!
package hirezapi.session;
import hirezapi.Platform;
import hirezapi.json.SessionCreation;
public interface SessionStorage {
String set(Platform platform, SessionCreation session);
String get(Platform platform);
boolean remove(Platform platform);
boolean contains(Platform platform);
}