Package de.javakaffee.web.msm

Examples of de.javakaffee.web.msm.SessionAttributesTranscoder.serializeAttributes()


        // serialize one instance
        final MemcachedBackupSession memcachedBackupSession = new MemcachedBackupSession();
        final Map<String, Object> attributes = new HashMap<String, Object>();
        attributes.put( "test", value );

        byte[] data = transcoder.serializeAttributes( memcachedBackupSession, attributes );
        final Map<String, Object> deserializeAttributes = transcoder.deserializeAttributes( data );

        final Object actual = deserializeAttributes.get( "test" );
        assertNotNull(actual);
        assertDeepEquals(actual, value);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.