Package org.apache.tomee.loader.service

Examples of org.apache.tomee.loader.service.ServiceContext


public class UserSessionListener implements HttpSessionListener {
    private static final String USER_CONTEXT = "UserSessionListener_USER_CONTEXT";

    @Override
    public void sessionCreated(HttpSessionEvent httpSessionEvent) {
        final ServiceContext cxt = new ServiceContextImpl();
        httpSessionEvent.getSession().setAttribute(USER_CONTEXT, cxt);
    }
View Full Code Here


    public void sessionDestroyed(HttpSessionEvent httpSessionEvent) {
        //do nothing
    }

    public static ServiceContext getServiceContext(HttpSession session) {
        final ServiceContext cxt = (ServiceContext) session.getAttribute(USER_CONTEXT);
        return cxt;
    }
View Full Code Here

TOP

Related Classes of org.apache.tomee.loader.service.ServiceContext

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.