Class StartProcessInstanceDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.runtime.StartProcessInstanceDto
-
public class StartProcessInstanceDto extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected String
businessKey
protected String
caseInstanceId
protected boolean
skipCustomListeners
protected boolean
skipIoMappings
protected List<ProcessInstanceModificationInstructionDto>
startInstructions
protected Map<String,VariableValueDto>
variables
protected boolean
withVariablesInReturn
-
Constructor Summary
Constructors Constructor Description StartProcessInstanceDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBusinessKey()
String
getCaseInstanceId()
List<ProcessInstanceModificationInstructionDto>
getStartInstructions()
Map<String,VariableValueDto>
getVariables()
boolean
isSkipCustomListeners()
boolean
isSkipIoMappings()
boolean
isWithVariablesInReturn()
void
setBusinessKey(String businessKey)
void
setCaseInstanceId(String caseInstanceId)
void
setSkipCustomListeners(boolean skipCustomListeners)
void
setSkipIoMappings(boolean skipIoMappings)
void
setStartInstructions(List<ProcessInstanceModificationInstructionDto> startInstructions)
void
setVariables(Map<String,VariableValueDto> variables)
void
setWithVariablesInReturn(boolean withVariablesInReturn)
-
-
-
Field Detail
-
variables
protected Map<String,VariableValueDto> variables
-
businessKey
protected String businessKey
-
caseInstanceId
protected String caseInstanceId
-
startInstructions
protected List<ProcessInstanceModificationInstructionDto> startInstructions
-
skipCustomListeners
protected boolean skipCustomListeners
-
skipIoMappings
protected boolean skipIoMappings
-
withVariablesInReturn
protected boolean withVariablesInReturn
-
-
Method Detail
-
getVariables
public Map<String,VariableValueDto> getVariables()
-
setVariables
public void setVariables(Map<String,VariableValueDto> variables)
-
getBusinessKey
public String getBusinessKey()
-
setBusinessKey
public void setBusinessKey(String businessKey)
-
getCaseInstanceId
public String getCaseInstanceId()
-
setCaseInstanceId
public void setCaseInstanceId(String caseInstanceId)
-
getStartInstructions
public List<ProcessInstanceModificationInstructionDto> getStartInstructions()
-
setStartInstructions
public void setStartInstructions(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)
-
-