Package org.activiti.engine.impl.cmd

Examples of org.activiti.engine.impl.cmd.GetEventLogEntriesCmd


    return commandExecutor.execute(new ExecuteCustomSqlCmd<MapperType, ResultType>(mapperClass, customSqlExecution));
  }
 
  @Override
  public List<EventLogEntry> getEventLogEntries(Long startLogNr, Long pageSize) {
    return commandExecutor.execute(new GetEventLogEntriesCmd(startLogNr, pageSize));
  }
View Full Code Here


    return commandExecutor.execute(new GetEventLogEntriesCmd(startLogNr, pageSize));
  }
 
  @Override
  public List<EventLogEntry> getEventLogEntriesByProcessInstanceId(String processInstanceId) {
    return commandExecutor.execute(new GetEventLogEntriesCmd(processInstanceId));
  }
View Full Code Here

TOP

Related Classes of org.activiti.engine.impl.cmd.GetEventLogEntriesCmd

Copyright © 2018 www.massapicom. 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.