Interface Process
-
- All Superinterfaces:
BaseElement
,BpmnModelElementInstance
,CallableElement
,ModelElementInstance
,RootElement
- All Known Implementing Classes:
ProcessImpl
public interface Process extends CallableElement
The BPMN process element- Author:
- Daniel Meyer, Sebastian Menski
-
-
Method Summary
-
Methods inherited from interface org.camunda.bpm.model.bpmn.instance.BaseElement
getDiagramElement, getDocumentations, getExtensionElements, getId, setExtensionElements, setId
-
Methods inherited from interface org.camunda.bpm.model.bpmn.instance.BpmnModelElementInstance
getScope, isScope
-
Methods inherited from interface org.camunda.bpm.model.bpmn.instance.CallableElement
getIoBindings, getIoSpecification, getName, getSupportedInterfaces, setIoSpecification, setName
-
Methods inherited from interface org.camunda.bpm.model.xml.instance.ModelElementInstance
addChildElement, getAttributeValue, getAttributeValueNs, getChildElementsByType, getChildElementsByType, getDomElement, getElementType, getModelInstance, getParentElement, getRawTextContent, getTextContent, getUniqueChildElementByNameNs, getUniqueChildElementByType, insertElementAfter, removeAttribute, removeAttributeNs, removeChildElement, replaceChildElement, replaceWithElement, setAttributeValue, setAttributeValue, setAttributeValue, setAttributeValueNs, setAttributeValueNs, setAttributeValueNs, setTextContent, setUniqueChildElementByNameNs, updateAfterReplacement
-
-
-
-
Method Detail
-
builder
ProcessBuilder builder()
Description copied from interface:BpmnModelElementInstance
Returns a new fluent builder for the element if implemented.- Specified by:
builder
in interfaceBpmnModelElementInstance
- Returns:
- the builder object
-
getProcessType
ProcessType getProcessType()
-
setProcessType
void setProcessType(ProcessType processType)
-
isClosed
boolean isClosed()
-
setClosed
void setClosed(boolean closed)
-
isExecutable
boolean isExecutable()
-
setExecutable
void setExecutable(boolean executable)
-
getAuditing
Auditing getAuditing()
-
setAuditing
void setAuditing(Auditing auditing)
-
getMonitoring
Monitoring getMonitoring()
-
setMonitoring
void setMonitoring(Monitoring monitoring)
-
getProperties
Collection<Property> getProperties()
-
getLaneSets
Collection<LaneSet> getLaneSets()
-
getFlowElements
Collection<FlowElement> getFlowElements()
-
getArtifacts
Collection<Artifact> getArtifacts()
-
getCorrelationSubscriptions
Collection<CorrelationSubscription> getCorrelationSubscriptions()
-
getResourceRoles
Collection<ResourceRole> getResourceRoles()
-
getSupports
Collection<Process> getSupports()
-
getCamundaCandidateStarterGroups
String getCamundaCandidateStarterGroups()
camunda extensions
-
setCamundaCandidateStarterGroups
void setCamundaCandidateStarterGroups(String camundaCandidateStarterGroups)
-
setCamundaCandidateStarterGroupsList
void setCamundaCandidateStarterGroupsList(List<String> camundaCandidateStarterGroupsList)
-
getCamundaCandidateStarterUsers
String getCamundaCandidateStarterUsers()
-
setCamundaCandidateStarterUsers
void setCamundaCandidateStarterUsers(String camundaCandidateStarterUsers)
-
setCamundaCandidateStarterUsersList
void setCamundaCandidateStarterUsersList(List<String> camundaCandidateStarterUsersList)
-
getCamundaJobPriority
String getCamundaJobPriority()
-
setCamundaJobPriority
void setCamundaJobPriority(String jobPriority)
-
getCamundaTaskPriority
String getCamundaTaskPriority()
-
setCamundaTaskPriority
void setCamundaTaskPriority(String taskPriority)
-
getCamundaHistoryTimeToLive
@Deprecated Integer getCamundaHistoryTimeToLive()
Deprecated.
-
setCamundaHistoryTimeToLive
@Deprecated void setCamundaHistoryTimeToLive(Integer historyTimeToLive)
Deprecated.
-
getCamundaHistoryTimeToLiveString
String getCamundaHistoryTimeToLiveString()
-
setCamundaHistoryTimeToLiveString
void setCamundaHistoryTimeToLiveString(String historyTimeToLive)
-
isCamundaStartableInTasklist
Boolean isCamundaStartableInTasklist()
-
setCamundaIsStartableInTasklist
void setCamundaIsStartableInTasklist(Boolean isStartableInTasklist)
-
getCamundaVersionTag
String getCamundaVersionTag()
-
setCamundaVersionTag
void setCamundaVersionTag(String versionTag)
-
-