Interface TaskAuditRepository
-
- All Known Implementing Classes:
TaskAuditRepositoryImpl
public interface TaskAuditRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanauditTask(java.lang.String key, java.lang.String method, java.lang.String server, java.time.Instant start, java.time.Instant end, java.lang.Exception exception)
-
-
-
Method Detail
-
auditTask
boolean auditTask(java.lang.String key, java.lang.String method, java.lang.String server, java.time.Instant start, java.time.Instant end, java.lang.Exception exception) throws DatabaseException- Parameters:
key- that identifies taskmethod- class and method where task was runningserver- identification (server hostname)start- is the instant that task start runningend- is the instant that task end runningexception- occurred during run- Returns:
- result of operation
- Throws:
DatabaseException- that was thrown when do not have database configured
-
-