Class ProcessInstanceModificationDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.runtime.modification.ProcessInstanceModificationDto
-
public class ProcessInstanceModificationDto extends Object
- Author:
- Thorben Lindhauer
-
-
Field Summary
Fields Modifier and Type Field Description protected String
annotation
protected List<ProcessInstanceModificationInstructionDto>
instructions
protected boolean
skipCustomListeners
protected boolean
skipIoMappings
-
Constructor Summary
Constructors Constructor Description ProcessInstanceModificationDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
applyTo(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
String
getAnnotation()
List<ProcessInstanceModificationInstructionDto>
getInstructions()
boolean
isSkipCustomListeners()
boolean
isSkipIoMappings()
void
setAnnotation(String annotation)
void
setInstructions(List<ProcessInstanceModificationInstructionDto> instructions)
void
setSkipCustomListeners(boolean skipCustomListeners)
void
setSkipIoMappings(boolean skipIoMappings)
-
-
-
Field Detail
-
skipCustomListeners
protected boolean skipCustomListeners
-
skipIoMappings
protected boolean skipIoMappings
-
instructions
protected List<ProcessInstanceModificationInstructionDto> instructions
-
annotation
protected String annotation
-
-
Method Detail
-
isSkipCustomListeners
public boolean isSkipCustomListeners()
-
setSkipCustomListeners
public void setSkipCustomListeners(boolean skipCustomListeners)
-
isSkipIoMappings
public boolean isSkipIoMappings()
-
setSkipIoMappings
public void setSkipIoMappings(boolean skipIoMappings)
-
getInstructions
public List<ProcessInstanceModificationInstructionDto> getInstructions()
-
setInstructions
public void setInstructions(List<ProcessInstanceModificationInstructionDto> instructions)
-
applyTo
public void applyTo(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
getAnnotation
public String getAnnotation()
-
setAnnotation
public void setAnnotation(String annotation)
-
-