Package org.wildfly.clustering.web.infinispan.session

Examples of org.wildfly.clustering.web.infinispan.session.Time


        assertTrue(metaData.isNew());

        metaData.setLastAccessedTime(new Date());
        assertFalse(metaData.isNew());

        metaData = new SimpleSessionMetaData(new Date(), new Date(), new Time(0, TimeUnit.SECONDS));
        assertFalse(metaData.isNew());
    }
View Full Code Here

TOP

Related Classes of org.wildfly.clustering.web.infinispan.session.Time

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.