Example usage for org.apache.wicket.session ISessionStore interface-usage

List of usage examples for org.apache.wicket.session ISessionStore interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.session ISessionStore interface-usage.

Usage

From source file RedisSessionStore.java

public class RedisSessionStore implements ISessionStore {
    private static final Logger log = LoggerFactory.getLogger(RedisSessionStore.class);

    private final Set<UnboundListener> unboundListeners = new CopyOnWriteArraySet<UnboundListener>();
    private final Set<BindListener> bindListeners = new CopyOnWriteArraySet<BindListener>();
    public static final String KEY_PREFIX_SESSION = "SESSION";

From source file bugs.HttpSessionStoreModified.java

/**
 * Implementation of {@link ISessionStore} that works with web applications and
 * provides some specific http servlet/ session related functionality.
 * 
 * @author jcompagner
 * @author Eelco Hillenius

From source file com.mastfrog.acteur.wicket.ActeurSessionStore.java

/**
 * Implementation of {@link ISessionStore} that works with web applications and
 * provides some specific http servlet/ session related functionality.
 *
 * @author jcompagner
 * @author Eelco Hillenius