blob: e55cc50e33fd8b8c992b1679776e290eb7c13e40 [file] [log] [blame]
package gov.nist.javax.sip;
/**
* The interface for a log record. The log records are generated by calling the
* LogReocrdFactory instance that is registered with the stack.
*
* @author M. Ranganathan
*
*/
public interface LogRecord {
public abstract boolean equals(Object other);
/**
* Get an XML String for this message
*/
public abstract String toString();
}