Uses of Interface
com.netscape.certsrv.logging.ILogEvent

Packages that use ILogEvent
com.netscape.certsrv.logging   
com.netscape.cms.logging   
 

Uses of ILogEvent in com.netscape.certsrv.logging
 

Subinterfaces of ILogEvent in com.netscape.certsrv.logging
 interface IBundleLogEvent
          An interface which all loggable events must implement.
 

Classes in com.netscape.certsrv.logging that implement ILogEvent
 class AuditEvent
          The log event object that carries message detail of a log event that goes into the Transaction log.
 class SignedAuditEvent
          The log event object that carries message detail of a log event that goes into the Signed Audit Event log.
 class SystemEvent
          The log event object that carries a log message.
 

Methods in com.netscape.certsrv.logging that return ILogEvent
 ILogEvent ILogEventFactory.create(int evtClass, java.util.Properties prop, int source, int level, boolean multiline, java.lang.String msg, java.lang.Object[] params)
          Creates an event of a particular event type/class.
 ILogEvent ILogger.create(int evtClass, java.util.Properties prop, int source, int level, java.lang.String msg, java.lang.Object[] params, boolean multiline)
           
 

Methods in com.netscape.certsrv.logging with parameters of type ILogEvent
 void ConsoleLog.log(ILogEvent ev)
          Log the given event.
 void ILogQueue.log(ILogEvent evt)
          Dispatch the log event to all registered log event listeners.
 void ILogEventListener.log(ILogEvent event)
          The event notification method: Logs event.
 void ILogEventFactory.release(ILogEvent event)
          Releases previously created event.
static void ConsoleError.send(ILogEvent ev)
          Send the given event to the Console.
 

Uses of ILogEvent in com.netscape.cms.logging
 

Methods in com.netscape.cms.logging with parameters of type ILogEvent
 void LogFile.log(ILogEvent ev)
          Write an event to the log file
 void RollingLogFile.log(ILogEvent ev)
          Write an event to the log file
 java.lang.String LogFile.logEvt2String(ILogEvent ev)