Package com.openindex.openestate.tool.db
Class DbLog
- java.lang.Object
-
- com.openindex.openestate.tool.db.DbLog
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DbAgencyObjectLog,DbCalendarEntryLog,DbContactsEntryLog
public abstract class DbLog extends Object implements Serializable
DbLog.- Author:
- Andreas Rudolph
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringACTION_ADDstatic StringACTION_EDITMap<String,DbLogChange>changesDatecreatedAtStringcreatedByStringentryActionStringentryTypelongidDatemodifiedAtStringmodifiedByStringnotesStringtext
-
Constructor Summary
Constructors Constructor Description DbLog()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaddChange(String key, String oldValue, String newValue)abstract StringgetPluginName()abstract StringwriteAction()StringwriteChangeKey(String key)StringwriteChangeValue(String key, String value)
-
-
-
Field Detail
-
ACTION_ADD
public static final String ACTION_ADD
- See Also:
- Constant Field Values
-
ACTION_EDIT
public static final String ACTION_EDIT
- See Also:
- Constant Field Values
-
id
public long id
-
entryType
public String entryType
-
entryAction
public String entryAction
-
text
public String text
-
notes
public String notes
-
createdAt
public Date createdAt
-
createdBy
public String createdBy
-
modifiedAt
public Date modifiedAt
-
modifiedBy
public String modifiedBy
-
changes
public Map<String,DbLogChange> changes
-
-