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.String
businessKey
protected java.lang.String
caseInstanceId
protected boolean
skipCustomListeners
protected boolean
skipIoMappings
protected java.util.List<ProcessInstanceModificationInstructionDto>
startInstructions
protected java.util.Map<java.lang.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 java.lang.String
getBusinessKey()
java.lang.String
getCaseInstanceId()
java.util.List<ProcessInstanceModificationInstructionDto>
getStartInstructions()
java.util.Map<java.lang.String,VariableValueDto>
getVariables()
boolean
isSkipCustomListeners()
boolean
isSkipIoMappings()
boolean
isWithVariablesInReturn()
void
setBusinessKey(java.lang.String businessKey)
void
setCaseInstanceId(java.lang.String caseInstanceId)
void
setSkipCustomListeners(boolean skipCustomListeners)
void
setSkipIoMappings(boolean skipIoMappings)
void
setStartInstructions(java.util.List<ProcessInstanceModificationInstructionDto> startInstructions)
void
setVariables(java.util.Map<java.lang.String,VariableValueDto> variables)
void
setWithVariablesInReturn(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)
-
-