Class StartProcessInstanceDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.runtime.StartProcessInstanceDto
-
public class StartProcessInstanceDto extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringbusinessKeyprotected java.lang.StringcaseInstanceIdprotected booleanskipCustomListenersprotected booleanskipIoMappingsprotected java.util.List<ProcessInstanceModificationInstructionDto>startInstructionsprotected java.util.Map<java.lang.String,VariableValueDto>variablesprotected booleanwithVariablesInReturn
-
Constructor Summary
Constructors Constructor Description StartProcessInstanceDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBusinessKey()java.lang.StringgetCaseInstanceId()java.util.List<ProcessInstanceModificationInstructionDto>getStartInstructions()java.util.Map<java.lang.String,VariableValueDto>getVariables()booleanisSkipCustomListeners()booleanisSkipIoMappings()booleanisWithVariablesInReturn()voidsetBusinessKey(java.lang.String businessKey)voidsetCaseInstanceId(java.lang.String caseInstanceId)voidsetSkipCustomListeners(boolean skipCustomListeners)voidsetSkipIoMappings(boolean skipIoMappings)voidsetStartInstructions(java.util.List<ProcessInstanceModificationInstructionDto> startInstructions)voidsetVariables(java.util.Map<java.lang.String,VariableValueDto> variables)voidsetWithVariablesInReturn(boolean withVariablesInReturn)
-
-
-
Field Detail
-
variables
protected java.util.Map<java.lang.String,VariableValueDto> variables
-
businessKey
protected java.lang.String businessKey
-
caseInstanceId
protected java.lang.String caseInstanceId
-
startInstructions
protected java.util.List<ProcessInstanceModificationInstructionDto> startInstructions
-
skipCustomListeners
protected boolean skipCustomListeners
-
skipIoMappings
protected boolean skipIoMappings
-
withVariablesInReturn
protected boolean withVariablesInReturn
-
-
Method Detail
-
getVariables
public java.util.Map<java.lang.String,VariableValueDto> getVariables()
-
setVariables
public void setVariables(java.util.Map<java.lang.String,VariableValueDto> variables)
-
getBusinessKey
public java.lang.String getBusinessKey()
-
setBusinessKey
public void setBusinessKey(java.lang.String businessKey)
-
getCaseInstanceId
public java.lang.String getCaseInstanceId()
-
setCaseInstanceId
public void setCaseInstanceId(java.lang.String caseInstanceId)
-
getStartInstructions
public java.util.List<ProcessInstanceModificationInstructionDto> getStartInstructions()
-
setStartInstructions
public void setStartInstructions(java.util.List<ProcessInstanceModificationInstructionDto> startInstructions)
-
isSkipCustomListeners
public boolean isSkipCustomListeners()
-
setSkipCustomListeners
public void setSkipCustomListeners(boolean skipCustomListeners)
-
isSkipIoMappings
public boolean isSkipIoMappings()
-
setSkipIoMappings
public void setSkipIoMappings(boolean skipIoMappings)
-
isWithVariablesInReturn
public boolean isWithVariablesInReturn()
-
setWithVariablesInReturn
public void setWithVariablesInReturn(boolean withVariablesInReturn)
-
-