Interface ILogEventFactory

All Known Implementing Classes:
AuditEventFactory, LogFactory, SignedAuditEventFactory

public interface ILogEventFactory
An interface represents a log event factory. This factory will be responsible for creating and returning ILogEvent objects on demand.
Version:
$Revision$, $Date$
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates a log event.
    void
    Releases previously created event.
  • Method Details

    • create

      ILogEvent create()
      Creates a log event.
    • release

      void release(ILogEvent event)
      Releases previously created event.
      Parameters:
      event - The log event.