| Package | Description |
|---|---|
| com.atlassian.bamboo.persister |
| Modifier and Type | Field and Description |
|---|---|
static javax.persistence.metamodel.SingularAttribute<AuditLogMessage,AuditLogEntityType> |
AuditLogMessage_.entityType |
static javax.persistence.metamodel.SingularAttribute<AuditLogMessage,AuditLogEntityType> |
AuditLogMessage_.fieldType |
| Modifier and Type | Method and Description |
|---|---|
AuditLogEntityType |
AuditLogEntityTypeUserType.fromString(@NotNull String stringValue) |
AuditLogEntityType |
AuditLogMessage.getEntityType() |
@Nullable AuditLogEntityType |
AuditLogEntry.getEntityType() |
AuditLogEntityType |
AuditLogMessage.getFieldType() |
@Nullable AuditLogEntityType |
AuditLogEntry.getFieldType() |
static @Nullable AuditLogEntityType |
AuditLogEntityType.getInstance(String name)
Returns the appropriate enum value from the given type string
|
AuditLogEntityType |
AuditLogEntity.getType() |
static AuditLogEntityType |
AuditLogEntityType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditLogEntityType[] |
AuditLogEntityType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
long |
AuditLogHibernateDao.countAuditLogMessagesForEntity(@NotNull String entityId,
AuditLogEntityType entityType,
long startDate,
long endDate) |
long |
DefaultAuditLogService.countAuditLogMessagesForEntity(@NotNull String entityId,
AuditLogEntityType entityType,
long startDate,
long endDate) |
long |
AuditLogDao.countAuditLogMessagesForEntity(@NotNull String entityId,
@Nullable AuditLogEntityType entityType,
long startDate,
long endDate)
Retrieve the number of audit log messages recorded against the specified entity between the
startDate and endDate (inclusive).
|
long |
AuditLogService.countAuditLogMessagesForEntity(@NotNull String entityId,
@Nullable AuditLogEntityType entityType,
long startDate,
long endDate) |
void |
AuditLogHibernateDao.deleteAuditLogMessagesByTypeAndEntityId(String entityId,
AuditLogEntityType entityType) |
void |
AuditLogDao.deleteAuditLogMessagesByTypeAndEntityId(String entityId,
AuditLogEntityType entityType) |
List<AuditLogEntry> |
AuditLogHibernateDao.getAuditLogMessagesForEntity(@NotNull String entityId,
@Nullable AuditLogEntityType entityType,
long startDate,
long endDate,
int firstResult,
int maxResults) |
List<AuditLogEntry> |
DefaultAuditLogService.getAuditLogMessagesForEntity(@NotNull String entityId,
AuditLogEntityType entityType,
long startDate,
long endDate,
int firstResult,
int maxResults) |
List<AuditLogEntry> |
AuditLogDao.getAuditLogMessagesForEntity(@NotNull String entityId,
@Nullable AuditLogEntityType entityType,
long startDate,
long endDate,
int firstResult,
int maxResults) |
List<AuditLogEntry> |
AuditLogService.getAuditLogMessagesForEntity(@NotNull String entityId,
@Nullable AuditLogEntityType entityType,
long startDate,
long endDate,
int firstResult,
int maxResults) |
void |
DefaultAuditLogService.log(@NotNull Iterable<AuditLogService.FieldChange> changes,
@Nullable String entityId,
@Nullable AuditLogEntityType entityType,
@Nullable String childKey,
@Nullable AuditLogEntity entity) |
void |
AuditLogService.log(@NotNull Iterable<AuditLogService.FieldChange> changes,
@Nullable String entityId,
AuditLogEntityType entityType,
@Nullable String childKey,
@Nullable AuditLogEntity entity) |
void |
DefaultAuditLogService.log(@NotNull String msg,
@Nullable Key key,
AuditLogEntityType entityType) |
void |
AuditLogService.log(@NotNull String msg,
@Nullable Key key,
AuditLogEntityType entityType)
Add a message to the plans audit log.
|
void |
DefaultAuditLogService.log(@NotNull String msg,
@Nullable Key key,
AuditLogEntityType entityType,
@Nullable AuditLogEntity entity) |
void |
AuditLogService.log(@NotNull String s,
@Nullable Key key,
@Nullable AuditLogEntityType entityType,
@Nullable AuditLogEntity entity)
Add a message to the entity's audit log.
|
void |
DefaultAuditLogService.log(@Nullable String username,
@NotNull String msg,
@Nullable Key key,
AuditLogEntityType entityType) |
void |
DefaultAuditLogService.log(@Nullable String username,
@NotNull String msg,
@Nullable Key key,
@Nullable AuditLogEntityType entityType,
@Nullable AuditLogEntity field) |
void |
DefaultAuditLogService.log(@NotNull String fieldName,
@Nullable String oldValue,
@Nullable String newValue,
@Nullable Key key,
@Nullable AuditLogEntityType entityType,
@Nullable AuditLogEntity entity) |
void |
AuditLogService.log(@NotNull String fieldName,
@Nullable String oldValue,
@Nullable String newValue,
@Nullable Key key,
AuditLogEntityType entityType,
@Nullable AuditLogEntity entity)
Add 'field change' message to the system audit log.
|
void |
DefaultAuditLogService.log(@Nullable com.atlassian.user.User user,
@NotNull String msg,
@Nullable Key key,
AuditLogEntityType entityType) |
void |
AuditLogService.log(@Nullable com.atlassian.user.User user,
@NotNull String msg,
@Nullable Key key,
@Nullable AuditLogEntityType entityType)
Add a message to the entity's audit log.
|
void |
DefaultAuditLogService.log(@Nullable com.atlassian.user.User user,
@NotNull String msg,
@Nullable Key key,
AuditLogEntityType entityType,
@Nullable AuditLogEntity entity) |
void |
AuditLogService.log(@Nullable com.atlassian.user.User user,
@NotNull String msg,
@Nullable Key key,
@Nullable AuditLogEntityType entityType,
@Nullable AuditLogEntity entity)
Add a message to the plans audit log.
|
static void |
TaskAuditLogHelper.logTaskConfigurationChanges(AuditLogService auditLogService,
TaskManager taskManager,
AuditLogEntityType entityType,
Key key,
TaskDefinition taskDefinition,
Map<String,String> oldConfiguration,
String oldDescription,
boolean oldIsEnabled) |
static void |
TriggerAuditLogHelper.logTriggerChanges(AuditLogService auditLogService,
Key key,
TriggerDefinition oldTriggerDefinition,
TriggerDefinition newTriggerDefinition,
AuditLogEntityType entityType) |
static void |
TriggerAuditLogHelper.logTriggerCreation(AuditLogService auditLogService,
Key key,
TriggerDefinition triggerDefinition,
AuditLogEntityType entityType) |
static void |
TriggerAuditLogHelper.logTriggerRemoval(AuditLogService auditLogService,
Key key,
TriggerDefinition triggerDefinition,
AuditLogEntityType entityType) |
void |
DefaultAuditLogService.removeAuditLogMessagesByTypeAndEntityId(@NotNull String entityId,
@Nullable AuditLogEntityType entityType) |
void |
AuditLogService.removeAuditLogMessagesByTypeAndEntityId(@NotNull String entityId,
@Nullable AuditLogEntityType entityType) |
protected void |
AuditLogMessage.setEntityType(AuditLogEntityType entityType) |
void |
AuditLogMessage.setFieldType(AuditLogEntityType fieldType) |
| Constructor and Description |
|---|
AuditLogEntity(@NotNull AuditLogEntityType auditLogEntityType,
@NotNull String entityHeader) |
AuditLogMessage(@Nullable String username,
@NotNull Date timestamp,
@Nullable AuditLogEntityType entityType,
@Nullable String entityId,
@Nullable String childId,
@Nullable AuditLogEntity field,
@NotNull String messageType,
@NotNull String message,
@Nullable String oldValue,
@Nullable String newValue) |
Copyright © 2023 Atlassian Software Systems Pty Ltd. All rights reserved.