com.iplanet.portalserver.logging
Class LogRecord

java.lang.Object
  |
  +--com.iplanet.portalserver.logging.LogRecord

public class LogRecord
extends java.lang.Object


Constructor Summary
LogRecord(java.lang.String type, java.lang.String msg)
          A log record (key-value pair) information to a log.
 
Method Summary
 java.lang.String getRecMsg()
          The log data or value of a single log record.
 java.lang.String getRecType()
          The log type or key of a single log record.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LogRecord

public LogRecord(java.lang.String type,
                 java.lang.String msg)
A log record (key-value pair) information to a log. It is the single log information a application submit to a log.
Parameters:
type - The log type or key.
Method Detail

getRecType

public java.lang.String getRecType()
The log type or key of a single log record.
Parameters:
None. -  
Returns:
The log type or key.

getRecMsg

public java.lang.String getRecMsg()
The log data or value of a single log record.
Parameters:
None. -  
Returns:
The log data or value.