Package org.apache.tomee.webapp.application

Examples of org.apache.tomee.webapp.application.SessionData


    private static final String CONTEXT_KEY = "UserSessionListener_USER_CONTEXT";
    private static final String OBJS_KEY = "objects";

    @Override
    public void sessionCreated(HttpSessionEvent httpSessionEvent) {
        httpSessionEvent.getSession().setAttribute(CONTEXT_KEY, new SessionData());

        //this i used by the old tomee gui
        //TODO: remove me once the new gui is ready
        httpSessionEvent.getSession().setAttribute(OBJS_KEY, new HashMap<String, Object>());
    }
View Full Code Here

TOP

Related Classes of org.apache.tomee.webapp.application.SessionData

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.