Interface EventLogEntryEntityManager
-
- All Superinterfaces:
EntityManager<EventLogEntryEntity>
- All Known Implementing Classes:
EventLogEntryEntityManagerImpl
@Internal public interface EventLogEntryEntityManager extends EntityManager<EventLogEntryEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteEventLogEntry(long logNr)List<EventLogEntry>findAllEventLogEntries()List<EventLogEntry>findEventLogEntries(long startLogNr, long pageSize)List<EventLogEntry>findEventLogEntriesByProcessInstanceId(String processInstanceId)
-
-
-
Method Detail
-
findAllEventLogEntries
List<EventLogEntry> findAllEventLogEntries()
-
findEventLogEntries
List<EventLogEntry> findEventLogEntries(long startLogNr, long pageSize)
-
findEventLogEntriesByProcessInstanceId
List<EventLogEntry> findEventLogEntriesByProcessInstanceId(String processInstanceId)
-
deleteEventLogEntry
void deleteEventLogEntry(long logNr)
-
-