1package gov.nist.javax.sip;
2
3/**
4 * The interface for a log record. The log records are generated by calling the
5 * LogReocrdFactory instance that is registered with the stack.
6 *
7 * @author M. Ranganathan
8 *
9 */
10public interface LogRecord {
11
12    public abstract boolean equals(Object other);
13
14    /**
15     * Get an XML String for this message
16     */
17
18    public abstract String toString();
19
20}
21