// ========================================================================
// Copyright (c) 2000 Mort Bay Consulting (Australia) Pty. Ltd.
// $Id: RequestLogFormat.java,v 1.1 2001/11/05 04:11:07 gregwilkins Exp $
// ========================================================================

package org.mortbay.http;

/* ------------------------------------------------------------ */
/** Abstract HTTP Request Log format
 * @version $Id: RequestLogFormat.java,v 1.1 2001/11/05 04:11:07 gregwilkins Exp $
 * @author Tony Thompson
 * @author Greg Wilkins
 */
public interface RequestLogFormat
{
    public String format(HttpRequest request,
                         HttpResponse response,
                         int responseLength);
}

