| com.flexive.shared.interfaces.HistoryTrackerEngine
All known Subclasses: com.flexive.ejb.beans.HistoryTrackerEngineBean,
HistoryTrackerEngine | public interface HistoryTrackerEngine (Code) | | History tracker service
author: Markus Plesser (markus.plesser@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at) |
Method Summary | |
void | track(String key, Object... args) Write a history entry
Parameters: key - key of the message (history. | void | track(FxType type, String key, Object... args) Write a history entry for a type
Parameters: type - affected type Parameters: key - key of the message (history. | void | track(FxType type, FxPK pk, String key, Object... args) Write a history entry for a content instance
Parameters: type - affected type Parameters: pk - affected content Parameters: key - key of the message (history. |
track | void track(String key, Object... args)(Code) | | Write a history entry
Parameters: key - key of the message (history. ...) Parameters: args - arguments needed by the key |
track | void track(FxType type, String key, Object... args)(Code) | | Write a history entry for a type
Parameters: type - affected type Parameters: key - key of the message (history. ...) Parameters: args - arguments needed by the key |
track | void track(FxType type, FxPK pk, String key, Object... args)(Code) | | Write a history entry for a content instance
Parameters: type - affected type Parameters: pk - affected content Parameters: key - key of the message (history. ...) Parameters: args - arguments needed by the key |
|
|