// ========================================================================
// $Id: J2EEWebApplicationContext.java,v 1.6 2004/10/03 01:35:42 gregwilkins Exp $
// Copyright 2002-2004 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ========================================================================
package org.mortbay.j2ee;
import org.jboss.logging.Logger;
import org.mortbay.j2ee.session.Manager;
import org.eclipse.jetty.server.handler.ErrorHandler;
import org.eclipse.jetty.security.SecurityHandler;
import org.eclipse.jetty.servlet.ServletHandler;
import org.eclipse.jetty.server.session.SessionHandler;
import org.eclipse.jetty.webapp.WebAppContext;
public class J2EEWebAppContext extends WebAppContext
{
protected static final Logger _log = Logger
.getLogger(J2EEWebAppContext.class);
// ----------------------------------------------------------------------------
// DistributedHttpSession support
// ----------------------------------------------------------------------------
protected Manager _distributableSessionManager;
// ----------------------------------------------------------------------------
public J2EEWebAppContext(SessionHandler sessionHandler,
SecurityHandler securityHandler,
ServletHandler servletHandler,
ErrorHandler errorHandler)
{
super(sessionHandler, securityHandler,servletHandler, errorHandler);
}
// ----------------------------------------------------------------------------
public void setDistributableSessionManager(Manager manager)
{
// _log.info("setDistributableSessionManager "+manager);
_distributableSessionManager = (Manager) manager;
_distributableSessionManager.setContext(this);
}
// ----------------------------------------------------------------------------
public Manager getDistributableSessionManager()
{
return _distributableSessionManager;
}
// ----------------------------------------------------------------------------
protected void doStart() throws Exception
{
// if (getStopGracefully() && !getStatsOn())
// setStatsOn(true);
super.doStart();
}
// ----------------------------------------------------------------------------
public void doStop() throws Exception
{
super.doStop();
_distributableSessionManager = null;
}
}