|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface LogManagerFactory
A log manager factory handles the creation of log managers and entity loggers. There is usually only one factory instance created for the entire BASE application. Implementations must be thread safe since the factory is used by multiple treads at the same time.
Each transaction that results in updates to the database are
intercepted by the LoggingInterceptor
which calls
getLogManager(LogControl)
to create a new log
manager for the transaction.
For each created, modified or deleted item in the transaction,
getEntityLogger(LogManager, Object)
is called. If this method
returns an object, EntityLogger.logChanges(LogManager, EntityDetails)
is called and the rest is up to the actual implementation.
Method Summary | |
---|---|
EntityLogger |
getEntityLogger(LogManager logManager,
Object entity)
Get/create an entity logger for logging changes to the given entity. |
LogManager |
getLogManager(LogControl logControl)
Get/create a log manager to log events in a given transaction. |
boolean |
isLoggable(Object entity)
Checks if changes to the given entity should be logged or not. |
Method Detail |
---|
LogManager getLogManager(LogControl logControl)
logControl
- A log controller with information about the
current transaction
boolean isLoggable(Object entity)
getEntityLogger(LogManager, Object)
mustn't return null if called with the same entity parameter.
entity
- The entity to check
EntityLogger getEntityLogger(LogManager logManager, Object entity)
logManager
- The log manager used in the current transactionentity
- The entity to get a logger for
|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |