diff --git a/library/Businessprocess/Node.php b/library/Businessprocess/Node.php index 4062454..05fb1d9 100644 --- a/library/Businessprocess/Node.php +++ b/library/Businessprocess/Node.php @@ -164,6 +164,17 @@ abstract class Node return $state; } + public function getLastStateChange() + { + return $this->lastStateChange; + } + + public function setLastStateChange($timestamp) + { + $this->lastStateChange = $timestamp; + return $this; + } + public function setParent(Node $parent) { $this->parent = $parent;