All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.activiti.engine.event.EventLogEntry Maven / Gradle / Ivy

The newest version!
package org.activiti.engine.event;

import java.util.Date;

/**

 */
public interface EventLogEntry {

  long getLogNumber();

  String getType();

  String getProcessDefinitionId();

  String getProcessInstanceId();

  String getExecutionId();

  String getTaskId();

  Date getTimeStamp();

  String getUserId();

  byte[] getData();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy