01: /*
02: * Copyright 2003-2006 Rick Knowles <winstone-devel at lists sourceforge net>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: */
07: package winstone;
08:
09: /**
10: * Used for logging accesses, eg in Apache access_log style
11: *
12: * @author <a href="mailto:rick_knowles@hotmail.com">Rick Knowles</a>
13: * @version $Id: AccessLogger.java,v 1.2 2006/02/28 07:32:47 rickknowles Exp $
14: */
15: public interface AccessLogger {
16: public void log(String originalURL, WinstoneRequest request,
17: WinstoneResponse response);
18:
19: public void destroy();
20: }
|