Package com.comalatech.workflow.audit
Interface AuditRecord
- 
@Deprecated public interface AuditRecordDeprecated.From Confluence 5.10 onwards, workflow records will only be stored in Confluence Audit Log. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.DategetDate()Deprecated.java.lang.StringgetEventType()Deprecated.java.util.Map<java.lang.String,java.lang.String>getNewValues()Deprecated.For getting new configuration values in case of configuration change event.java.util.Map<java.lang.String,java.lang.String>getOldValues()Deprecated.For getting old configuration values in case of configuration change event.java.lang.StringgetSpaceKey()Deprecated.java.lang.StringgetUserId()Deprecated.java.lang.StringgetValue()Deprecated.For getting audit record description/value. 
 - 
 
- 
- 
Method Detail
- 
getDate
java.util.Date getDate()
Deprecated. 
- 
getSpaceKey
java.lang.String getSpaceKey()
Deprecated. 
- 
getUserId
java.lang.String getUserId()
Deprecated. 
- 
getEventType
java.lang.String getEventType()
Deprecated. 
- 
getValue
java.lang.String getValue()
Deprecated.For getting audit record description/value. Since 1.15 for getting configuration values in case of configuration change usegetOldValues()andgetNewValues() 
- 
getOldValues
java.util.Map<java.lang.String,java.lang.String> getOldValues()
Deprecated.For getting old configuration values in case of configuration change event.- Since:
 - 1.15
 
 
- 
getNewValues
java.util.Map<java.lang.String,java.lang.String> getNewValues()
Deprecated.For getting new configuration values in case of configuration change event.- Since:
 - 1.15
 
 
 - 
 
 -