de.javakaffee.web.msm.BackupResultStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of memcached-session-manager Show documentation
Show all versions of memcached-session-manager Show documentation
The msm core, provides java serialization strategy.
The newest version!
package de.javakaffee.web.msm;
/**
* The enumeration of possible backup results.
*/
public enum BackupResultStatus {
/**
* The session was successfully stored in the sessions default memcached node.
* This status is also used, if a session was relocated to another memcached node.
*/
SUCCESS,
/**
* The session could not be stored in any memcached node.
*/
FAILURE,
/**
* The session was not modified and therefore the backup was skipped.
*/
SKIPPED
}