public interface IAuditor
| Modifier and Type | Method and Description |
|---|---|
void |
onCreateFailure(com.helger.commons.type.ObjectType aObjectType,
Object... aArgs)
The creation of an object failed.
|
void |
onCreateSuccess(com.helger.commons.type.ObjectType aObjectType,
Object... aArgs)
The creation of an object succeeded.
|
void |
onDeleteFailure(com.helger.commons.type.ObjectType aObjectType,
Object... aArgs)
The deletion of an object failed.
|
void |
onDeleteSuccess(com.helger.commons.type.ObjectType aObjectType,
Object... aArgs)
The deletion of an object succeeded.
|
void |
onExecuteFailure(com.helger.commons.type.ObjectType aObjectType,
String sWhat,
Object... aArgs)
The execution of something on an object failed.
|
void |
onExecuteFailure(String sWhat,
Object... aArgs)
The execution of something failed.
|
void |
onExecuteSuccess(com.helger.commons.type.ObjectType aObjectType,
String sWhat,
Object... aArgs)
The execution of something on an object succeeded.
|
void |
onExecuteSuccess(String sWhat,
Object... aArgs)
The execution of something succeeded.
|
void |
onModifyFailure(com.helger.commons.type.ObjectType aObjectType,
String sWhat,
Object... aArgs)
The modification of an object failed.
|
void |
onModifySuccess(com.helger.commons.type.ObjectType aObjectType,
String sWhat,
Object... aArgs)
The modification of an object succeeded.
|
void |
onUndeleteFailure(com.helger.commons.type.ObjectType aObjectType,
Object... aArgs)
The undeletion of an object failed.
|
void |
onUndeleteSuccess(com.helger.commons.type.ObjectType aObjectType,
Object... aArgs)
The undeletion of an object succeeded.
|
void onCreateSuccess(@Nonnull com.helger.commons.type.ObjectType aObjectType, @Nullable Object... aArgs)
aObjectType - The object typeaArgs - Additional argumentsvoid onCreateFailure(@Nonnull com.helger.commons.type.ObjectType aObjectType, @Nullable Object... aArgs)
aObjectType - The object typeaArgs - Additional argumentsvoid onModifySuccess(@Nonnull com.helger.commons.type.ObjectType aObjectType, @Nonnull String sWhat, @Nullable Object... aArgs)
aObjectType - The object typesWhat - What was modified?aArgs - Additional argumentsvoid onModifyFailure(@Nonnull com.helger.commons.type.ObjectType aObjectType, @Nonnull String sWhat, @Nullable Object... aArgs)
aObjectType - The object typesWhat - What was modified?aArgs - Additional argumentsvoid onDeleteSuccess(@Nonnull com.helger.commons.type.ObjectType aObjectType, @Nullable Object... aArgs)
aObjectType - The object typeaArgs - Additional argumentsvoid onDeleteFailure(@Nonnull com.helger.commons.type.ObjectType aObjectType, @Nullable Object... aArgs)
aObjectType - The object typeaArgs - Additional argumentsvoid onUndeleteSuccess(@Nonnull com.helger.commons.type.ObjectType aObjectType, @Nullable Object... aArgs)
aObjectType - The object typeaArgs - Additional argumentsvoid onUndeleteFailure(@Nonnull com.helger.commons.type.ObjectType aObjectType, @Nullable Object... aArgs)
aObjectType - The object typeaArgs - Additional argumentsvoid onExecuteSuccess(@Nonnull String sWhat, @Nullable Object... aArgs)
sWhat - What has been executed?aArgs - Additional argumentsvoid onExecuteFailure(@Nonnull String sWhat, @Nullable Object... aArgs)
sWhat - What has been executed?aArgs - Additional argumentsvoid onExecuteSuccess(@Nonnull com.helger.commons.type.ObjectType aObjectType, @Nonnull String sWhat, @Nullable Object... aArgs)
aObjectType - The object typesWhat - What has been executed?aArgs - Additional argumentsCopyright © 2014–2015 Philip Helger. All rights reserved.