org.camunda.bpm.engine.impl.RestartProcessInstanceBuilderImpl Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
* under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. Camunda licenses this file to you under the Apache License,
* Version 2.0; you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.camunda.bpm.engine.impl;
import static org.camunda.bpm.engine.impl.util.EnsureUtil.ensureNotNull;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.camunda.bpm.engine.batch.Batch;
import org.camunda.bpm.engine.exception.NotValidException;
import org.camunda.bpm.engine.history.HistoricProcessInstanceQuery;
import org.camunda.bpm.engine.impl.batch.RestartProcessInstancesBatchCmd;
import org.camunda.bpm.engine.impl.cmd.AbstractProcessInstanceModificationCommand;
import org.camunda.bpm.engine.impl.cmd.ActivityAfterInstantiationCmd;
import org.camunda.bpm.engine.impl.cmd.ActivityBeforeInstantiationCmd;
import org.camunda.bpm.engine.impl.cmd.RestartProcessInstancesCmd;
import org.camunda.bpm.engine.impl.cmd.TransitionInstantiationCmd;
import org.camunda.bpm.engine.impl.interceptor.CommandExecutor;
import org.camunda.bpm.engine.runtime.RestartProcessInstanceBuilder;
/**
* @author Anna Pazola
*/
public class RestartProcessInstanceBuilderImpl implements RestartProcessInstanceBuilder {
protected CommandExecutor commandExecutor;
protected List processInstanceIds;
protected List instructions;
protected String processDefinitionId;
protected HistoricProcessInstanceQuery query;
protected boolean initialVariables;
protected boolean skipCustomListeners;
protected boolean skipIoMappings;
protected boolean withoutBusinessKey;
public RestartProcessInstanceBuilderImpl(CommandExecutor commandExecutor, String processDefinitionId) {
ensureNotNull(NotValidException.class, "processDefinitionId", processDefinitionId);
this.commandExecutor = commandExecutor;
this.instructions = new ArrayList();
this.processDefinitionId = processDefinitionId;
this.processInstanceIds = new ArrayList();
}
public RestartProcessInstanceBuilderImpl(String processDefinitionId) {
this(null, processDefinitionId);
}
@Override
public RestartProcessInstanceBuilder startBeforeActivity(String activityId) {
ensureNotNull(NotValidException.class, "activityId", activityId);
instructions.add(new ActivityBeforeInstantiationCmd(null, activityId));
return this;
}
@Override
public RestartProcessInstanceBuilder startAfterActivity(String activityId) {
ensureNotNull(NotValidException.class, "activityId", activityId);
instructions.add(new ActivityAfterInstantiationCmd(null, activityId));
return this;
}
@Override
public RestartProcessInstanceBuilder startTransition(String transitionId) {
ensureNotNull(NotValidException.class, "activityId", transitionId);
instructions.add(new TransitionInstantiationCmd(null, transitionId));
return this;
}
public void execute() {
commandExecutor.execute(new RestartProcessInstancesCmd(commandExecutor, this));
}
public Batch executeAsync() {
return commandExecutor.execute(new RestartProcessInstancesBatchCmd(commandExecutor, this));
}
public List getInstructions() {
return instructions;
}
public List getProcessInstanceIds() {
return processInstanceIds;
}
@Override
public RestartProcessInstanceBuilder processInstanceIds(String... processInstanceIds) {
this.processInstanceIds.addAll(Arrays.asList(processInstanceIds));
return this;
}
@Override
public RestartProcessInstanceBuilder historicProcessInstanceQuery(HistoricProcessInstanceQuery query) {
this.query = query;
return this;
}
public HistoricProcessInstanceQuery getHistoricProcessInstanceQuery() {
return query;
}
public String getProcessDefinitionId() {
return processDefinitionId;
}
public void setInstructions(List instructions) {
this.instructions = instructions;
}
public void setProcessDefinitionId(String processDefinitionId) {
this.processDefinitionId = processDefinitionId;
}
@Override
public RestartProcessInstanceBuilder processInstanceIds(List processInstanceIds) {
this.processInstanceIds.addAll(processInstanceIds);
return this;
}
@Override
public RestartProcessInstanceBuilder initialSetOfVariables() {
this.initialVariables = true;
return this;
}
public boolean isInitialVariables() {
return initialVariables;
}
@Override
public RestartProcessInstanceBuilder skipCustomListeners() {
this.skipCustomListeners = true;
return this;
}
@Override
public RestartProcessInstanceBuilder skipIoMappings() {
this.skipIoMappings = true;
return this;
}
public boolean isSkipCustomListeners() {
return skipCustomListeners;
}
public boolean isSkipIoMappings() {
return skipIoMappings;
}
@Override
public RestartProcessInstanceBuilder withoutBusinessKey() {
withoutBusinessKey = true;
return this;
}
public boolean isWithoutBusinessKey() {
return withoutBusinessKey;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy