Package com.atlassian.bamboo.persister
Interface AuditLogEntry
-
- All Superinterfaces:
BambooIdProvider
,BambooObject
- All Known Implementing Classes:
AuditLogMessage
public interface AuditLogEntry extends BambooObject
-
-
Field Summary
Fields Modifier and Type Field Description static String
TYPE_CONFIG_CHANGE
static String
TYPE_FIELD_CHANGE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable String
getChildId()
@Nullable String
getEntityId()
@Nullable AuditLogEntityType
getEntityType()
@Nullable String
getFieldHeader()
@Nullable AuditLogEntityType
getFieldType()
@NotNull String
getMessage()
@NotNull String
getMessageType()
@Nullable String
getNewValue()
@Nullable String
getOldValue()
@NotNull Long
getTimestamp()
@Nullable String
getUsername()
-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
-
-
-
Field Detail
-
TYPE_CONFIG_CHANGE
static final String TYPE_CONFIG_CHANGE
- See Also:
- Constant Field Values
-
TYPE_FIELD_CHANGE
static final String TYPE_FIELD_CHANGE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTimestamp
@NotNull @NotNull Long getTimestamp()
-
getMessageType
@NotNull @NotNull String getMessageType()
-
getMessage
@NotNull @NotNull String getMessage()
-
getOldValue
@Nullable @Nullable String getOldValue()
-
getNewValue
@Nullable @Nullable String getNewValue()
-
getEntityId
@Nullable @Nullable String getEntityId()
-
getEntityType
@Nullable @Nullable AuditLogEntityType getEntityType()
-
getChildId
@Nullable @Nullable String getChildId()
-
getFieldHeader
@Nullable @Nullable String getFieldHeader()
-
getFieldType
@Nullable @Nullable AuditLogEntityType getFieldType()
-
getUsername
@Nullable @Nullable String getUsername()
-
-