Uses of Interface
org.activiti.engine.event.EventLogEntry
-
Packages that use EventLogEntry Package Description org.activiti.engine Public API of the Activiti engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.activiti.engine.impl.cmd org.activiti.engine.impl.persistence.entity org.activiti.engine.impl.persistence.entity.data org.activiti.engine.impl.persistence.entity.data.impl -
-
Uses of EventLogEntry in org.activiti.engine
Methods in org.activiti.engine that return types with arguments of type EventLogEntry Modifier and Type Method Description java.util.List<EventLogEntry>ManagementService. getEventLogEntries(java.lang.Long startLogNr, java.lang.Long pageSize)Returns a list of event log entries, describing everything the engine has processed.java.util.List<EventLogEntry>ManagementService. getEventLogEntriesByProcessInstanceId(java.lang.String processInstanceId)Returns a list of event log entries for a specific process instance id. -
Uses of EventLogEntry in org.activiti.engine.impl
Methods in org.activiti.engine.impl that return types with arguments of type EventLogEntry Modifier and Type Method Description java.util.List<EventLogEntry>ManagementServiceImpl. getEventLogEntries(java.lang.Long startLogNr, java.lang.Long pageSize)java.util.List<EventLogEntry>ManagementServiceImpl. getEventLogEntriesByProcessInstanceId(java.lang.String processInstanceId) -
Uses of EventLogEntry in org.activiti.engine.impl.cmd
Methods in org.activiti.engine.impl.cmd that return types with arguments of type EventLogEntry Modifier and Type Method Description java.util.List<EventLogEntry>GetEventLogEntriesCmd. execute(CommandContext commandContext) -
Uses of EventLogEntry in org.activiti.engine.impl.persistence.entity
Subinterfaces of EventLogEntry in org.activiti.engine.impl.persistence.entity Modifier and Type Interface Description interfaceEventLogEntryEntityAn event log entry can only be inserted (and maybe deleted).Classes in org.activiti.engine.impl.persistence.entity that implement EventLogEntry Modifier and Type Class Description classEventLogEntryEntityImplAn event log entry can only be inserted (and maybe deleted).Methods in org.activiti.engine.impl.persistence.entity that return types with arguments of type EventLogEntry Modifier and Type Method Description java.util.List<EventLogEntry>EventLogEntryEntityManager. findAllEventLogEntries()java.util.List<EventLogEntry>EventLogEntryEntityManagerImpl. findAllEventLogEntries()java.util.List<EventLogEntry>EventLogEntryEntityManager. findEventLogEntries(long startLogNr, long pageSize)java.util.List<EventLogEntry>EventLogEntryEntityManagerImpl. findEventLogEntries(long startLogNr, long pageSize)java.util.List<EventLogEntry>EventLogEntryEntityManager. findEventLogEntriesByProcessInstanceId(java.lang.String processInstanceId)java.util.List<EventLogEntry>EventLogEntryEntityManagerImpl. findEventLogEntriesByProcessInstanceId(java.lang.String processInstanceId) -
Uses of EventLogEntry in org.activiti.engine.impl.persistence.entity.data
Methods in org.activiti.engine.impl.persistence.entity.data that return types with arguments of type EventLogEntry Modifier and Type Method Description java.util.List<EventLogEntry>EventLogEntryDataManager. findAllEventLogEntries()java.util.List<EventLogEntry>EventLogEntryDataManager. findEventLogEntries(long startLogNr, long pageSize)java.util.List<EventLogEntry>EventLogEntryDataManager. findEventLogEntriesByProcessInstanceId(java.lang.String processInstanceId) -
Uses of EventLogEntry in org.activiti.engine.impl.persistence.entity.data.impl
Methods in org.activiti.engine.impl.persistence.entity.data.impl that return types with arguments of type EventLogEntry Modifier and Type Method Description java.util.List<EventLogEntry>MybatisEventLogEntryDataManager. findAllEventLogEntries()java.util.List<EventLogEntry>MybatisEventLogEntryDataManager. findEventLogEntries(long startLogNr, long pageSize)java.util.List<EventLogEntry>MybatisEventLogEntryDataManager. findEventLogEntriesByProcessInstanceId(java.lang.String processInstanceId)
-