Package com.founder.fix.fixflow.core.impl.cmd

Examples of com.founder.fix.fixflow.core.impl.cmd.ArchiveCmd


public class HistoryServiceImpl extends ServiceImpl implements HistoryService {

  public boolean archiveByProcessInstanceId(String processinstanceId) {
    List<String> processInstanceIds = new ArrayList<String>();
    processInstanceIds.add(processinstanceId);
    return commandExecutor.execute(new ArchiveCmd(processInstanceIds, null, null, null, false));
  }
View Full Code Here


    processInstanceIds.add(processinstanceId);
    return commandExecutor.execute(new ArchiveCmd(processInstanceIds, null, null, null, false));
  }
 
  public boolean archiveByProcessInstanceIds(List<String> processInstanceIds){
    return commandExecutor.execute(new ArchiveCmd(processInstanceIds, null, null, null, false));
  }
View Full Code Here

  public boolean archiveByProcessInstanceIds(List<String> processInstanceIds){
    return commandExecutor.execute(new ArchiveCmd(processInstanceIds, null, null, null, false));
  }
 
  public boolean archiveByProcessDefinitionKey(String processDefinitionKey) {
    return commandExecutor.execute(new ArchiveCmd(null, processDefinitionKey, null, null, false));
  }
View Full Code Here

  public boolean archiveByProcessDefinitionKey(String processDefinitionKey) {
    return commandExecutor.execute(new ArchiveCmd(null, processDefinitionKey, null, null, false));
  }
 
  public boolean archiveBetweenTime(Date begin, Date end) {
    return commandExecutor.execute(new ArchiveCmd(null, null, begin, end, false));
  }
View Full Code Here

  public boolean archiveBetweenTime(Date begin, Date end) {
    return commandExecutor.execute(new ArchiveCmd(null, null, begin, end, false));
  }
 
  public boolean archiveAll() {
    return commandExecutor.execute(new ArchiveCmd(null, null, null, null, true));
  }
View Full Code Here

TOP

Related Classes of com.founder.fix.fixflow.core.impl.cmd.ArchiveCmd

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.