Package org.apache.tomee.loader.service

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


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

TOP

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

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.