Package org.camunda.bpm.engine.impl.pvm
Interface PvmProcessElement
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
PvmActivity,PvmProcessDefinition,PvmScope,PvmTransition,ReadOnlyProcessDefinition
- All Known Implementing Classes:
ActivityImpl,ProcessDefinitionEntity,ProcessDefinitionImpl,ProcessDefinitionStatisticsEntity,ScopeImpl,TransitionImpl
public interface PvmProcessElement extends java.io.Serializable- Author:
- Tom Baeyens
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetId()The id of the elementPvmProcessDefinitiongetProcessDefinition()The process definition scope, root of the scope hierarchy.PropertiesgetProperties()Returns the properties of the element.java.lang.ObjectgetProperty(java.lang.String name)
-
-
-
Method Detail
-
getId
java.lang.String getId()
The id of the element- Returns:
- the id
-
getProcessDefinition
PvmProcessDefinition getProcessDefinition()
The process definition scope, root of the scope hierarchy.- Returns:
-
getProperty
java.lang.Object getProperty(java.lang.String name)
-
getProperties
Properties getProperties()
Returns the properties of the element.- Returns:
- the properties
-
-