/*
* Enhydra Java Application Server Project
*
* The contents of this file are subject to the Enhydra Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License on
* the Enhydra web site ( http://www.enhydra.org/ ).
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific terms governing rights and limitations
* under the License.
*
* The Initial Developer of the Enhydra Application Server is Lutris
* Technologies, Inc. The Enhydra Application Server and portions created
* by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
* All Rights Reserved.
*
* Contributor(s):
*
* $Id: StandardSessionIdleHandler.java,v 1.2 2006-06-15 13:40:47 sinisa Exp $
*/
package com.lutris.appserver.server.sessionEnhydra;
import com.lutris.appserver.server.session.SessionException;
/**
* Interface for class that is involked by StandardSessionIdleTimer to
* clean up sessions.
*
* @version $Revision: 1.2 $
* @author Mark Diekhans
*/
public interface StandardSessionIdleHandler {
/**
* Method that is called by idle handler to clean up sessions.
*
* @exception SessionException
* if the idle sessions cannot be cleaned up.
*/
public void cleanUpIdleSessions() throws SessionException;
}
|