| java.lang.Object org.apache.catalina.valves.ValveBase org.apache.catalina.valves.PersistentValve
PersistentValve | public class PersistentValve extends ValveBase (Code) | | Valve that implements the default basic behavior for the
StandardHost container implementation.
USAGE CONSTRAINT: To work correctly it requires a PersistentManager.
author: Jean-Frederic Clere version: $Revision: 467222 $ $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $ |
Method Summary | |
public String | getInfo() Return descriptive information about this Valve implementation. | public void | invoke(Request request, Response response) Select the appropriate child Context to process this request,
based on the specified request URI. | protected boolean | isSessionStale(Session session, long timeNow) Indicate whether the session has been idle for longer
than its expiration date as of the supplied time. |
getInfo | public String getInfo()(Code) | | Return descriptive information about this Valve implementation.
|
invoke | public void invoke(Request request, Response response) throws IOException, ServletException(Code) | | Select the appropriate child Context to process this request,
based on the specified request URI. If no matching Context can
be found, return an appropriate HTTP error.
Parameters: request - Request to be processed Parameters: response - Response to be produced exception: IOException - if an input/output error occurred exception: ServletException - if a servlet error occurred |
isSessionStale | protected boolean isSessionStale(Session session, long timeNow)(Code) | | Indicate whether the session has been idle for longer
than its expiration date as of the supplied time.
FIXME: Probably belongs in the Session class.
|
|
|