Package org.impalaframework.web.servlet.wrapper.session

Examples of org.impalaframework.web.servlet.wrapper.session.StateProtectingHttpSession.invalidate()


        replay(session);

        StateProtectingHttpSession wrappedSession = new StateProtectingHttpSession(session, webAttributeQualifier, applicationId, moduleName, ClassUtils.getDefaultClassLoader());

        assertTrue(wrappedSession.isValid());
        wrappedSession.invalidate();
        assertFalse(wrappedSession.isValid());
       
        verify(session);
    }
   
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.