Package atg.servlet.sessiontracking

Examples of atg.servlet.sessiontracking.GenericHttpSession


            mSessionId = pSessionId;
        }

        // This is only here for 10.0? @Override
        protected GenericHttpSession createDefaultGenericHttpSession() {
            return new GenericHttpSession(mSessionId);
        }
View Full Code Here


        // 9.0 and older won't create a session.
        // If none exists, we make it here.
        public HttpSession getSession(boolean create) {
            HttpSession s = super.getSession(create);
            if (s == null) {
                s = new GenericHttpSession(mSessionId);
                // FIXME: more private access
                //mSession = s;
            }
            return s;
        }
View Full Code Here

TOP

Related Classes of atg.servlet.sessiontracking.GenericHttpSession

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.