Interface BpmElement
-
- All Known Subinterfaces:
BpmElementType
public interface BpmElementA BPM process element. Use this to define constants for process elements in your test classes.
Example:
class TestExample { private static final BpmElement HTML_DIALOG = BpmElement.processName("ProcurementRequest").name("Registration Form"); }- Since:
- 9.1
- See Also:
BpmProcess- API:
- This is a public API.
-
-
Method Summary
Static Methods Modifier and Type Method Description static BpmElementpid(PID pid)Selects a process element by the given process identifier (pid).static ElementTypeSelectorprocess(BpmProcess process)Selects a process element in the given process.static ElementTypeSelectorprocessName(String processName)Selects a process element in the process with the given process name
-
-
-
Method Detail
-
pid
static BpmElement pid(PID pid)
Selects a process element by the given process identifier (pid). Example of a pid:1397B6D6C4B9D4A3-f2.- Parameters:
pid- process identifier- Returns:
- selected process element
- API:
- This public API is available in Java.
-
process
static ElementTypeSelector process(BpmProcess process)
Selects a process element in the given process.- Returns:
- element selector to further select a process element
- See Also:
processName(String)- API:
- This public API is available in Java.
-
processName
static ElementTypeSelector processName(String processName)
Selects a process element in the process with the given process name- Parameters:
processName- Name of the process- Returns:
- element selector to further select a process element
- See Also:
process(BpmProcess)- API:
- This public API is available in Java.
-
-