Interface AccessLogFormat
-
- All Known Implementing Classes:
ApacheLogFormat
public interface AccessLogFormatAn interface defining a component capable of formattingResponses into printable access log entries.Implementations of this class must be thread-safe.
- Author:
- Pier Fumagalli, USRZ.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringformat(Response response, java.util.Date timeStamp, long responseNanos)Format the data contained in the specifiedResponseand return aStringwhich can be appended to an access log file.
-