Package com.ovea.jetty.session.serializer

Examples of com.ovea.jetty.session.serializer.XStreamSerializer


    private final Serializer serializer;

    private long saveIntervalSec = 20; //only persist changes to session access times every 20 secs

    public RedisSessionManager(JedisPool jedisPool) {
        this(jedisPool, new XStreamSerializer());
    }
View Full Code Here


    public RedisSessionManager(JedisPool jedisPool) {
        this(jedisPool, new XStreamSerializer());
    }

    public RedisSessionManager(String jndiName) {
        this(jndiName, new XStreamSerializer());
    }
View Full Code Here

TOP

Related Classes of com.ovea.jetty.session.serializer.XStreamSerializer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.