Examples of EventLogEntryEntity


Examples of org.activiti.engine.impl.persistence.entity.EventLogEntryEntity

 
  protected EventLogEntryEntity createEventLogEntry(String type,
      String processDefinitionId, String processInstanceId, String executionId,
      String taskId, Map<String, Object> data) {

    EventLogEntryEntity eventLogEntry = new EventLogEntryEntity();
    eventLogEntry.setProcessDefinitionId(processDefinitionId);
    eventLogEntry.setProcessInstanceId(processInstanceId);
    eventLogEntry.setExecutionId(executionId);
    eventLogEntry.setTaskId(taskId);
    eventLogEntry.setType(type);
    eventLogEntry.setTimeStamp(timeStamp);
    putInMapIfNotNull(data, Fields.TIMESTAMP, timeStamp);

    // Current user
    String userId = Authentication.getAuthenticatedUserId();
    if (userId != null) {
      eventLogEntry.setUserId(userId);
      putInMapIfNotNull(data, "userId", userId);
    }
   
    // Current tenant
    if (!data.containsKey(Fields.TENANT_ID) && processDefinitionId != null) {
      DeploymentCache<ProcessDefinitionEntity> processDefinitionCache = Context.getProcessEngineConfiguration().getProcessDefinitionCache();
      if (processDefinitionCache != null) {
        ProcessDefinitionEntity processDefinitionEntity = processDefinitionCache.get(processDefinitionId);
        if (processDefinitionEntity != null
            && !ProcessEngineConfigurationImpl.NO_TENANT_ID.equals(processDefinitionEntity.getTenantId())) {
          putInMapIfNotNull(data, Fields.TENANT_ID, processDefinitionEntity.getTenantId());
        }
      }
    }

    try {
      eventLogEntry.setData(objectMapper.writeValueAsBytes(data));
    } catch (Exception e) {
      logger.warn("Could not serialize event data. Data will not be written to the database", e);
    }

    return eventLogEntry;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.