01: package examples.nistgoodies.configlogger;
02:
03: import gov.nist.javax.sip.LogRecord;
04: import gov.nist.javax.sip.LogRecordFactory;
05:
06: public class LogRecordFactoryImpl implements LogRecordFactory {
07:
08: public LogRecord createLogRecord(String message, String source,
09: String destination, long timeStamp, boolean isSender,
10: String firstLine, String tid, String callId,
11: long timestampVal) {
12:
13: return new LogRecordImpl(message, source, destination,
14: timeStamp, isSender, firstLine, tid, callId,
15: timestampVal);
16: }
17:
18: }
|