Package ariba.ui.aribaweb.core

Examples of ariba.ui.aribaweb.core.AWSession.terminate()


                AWSession awsession = AWSession.session(httpSession);
                if (awsession != null) {
                    // AWSession.terminate must be called before httpSession.invalidate because
                    // subclasses of AWSession may implement terminate() which requires data from the
                    // session. See defect 93887 for more information.
                    awsession.terminate();
                }
                Log.aribaweb.debug("verifySessionIsValid: HttpSession invalidated: %s",
                                   httpSession.getId());
                httpSession.invalidate();
            }
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.