All Downloads are FREE. Search and download functionalities are using the official Maven repository.

examples.nistgoodies.pluggablelogger.LogRecordFactoryImpl Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
package examples.nistgoodies.pluggablelogger;

import gov.nist.javax.sip.LogRecord;
import gov.nist.javax.sip.LogRecordFactory;

public class LogRecordFactoryImpl implements LogRecordFactory {

    public LogRecord createLogRecord(String message, String source,
            String destination, long timeStamp, boolean isSender,
            String firstLine, String tid, String callId, long timestampVal) {

        return new LogRecordImpl(message,source,destination,timeStamp,isSender,firstLine,tid,callId,timestampVal);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy