diff --git a/library/Bpapp/Storage/Storage.php b/library/Bpapp/Storage/Storage.php new file mode 100644 index 0000000..fcacb85 --- /dev/null +++ b/library/Bpapp/Storage/Storage.php @@ -0,0 +1,35 @@ +config = $config; + $this->init(); + } + + protected function init() + { + } + + /** + * @return array + */ + abstract public function listProcesses(); + + /** + * @return BusinessProcess + */ + abstract public function loadProcess($name); + + /** + */ + abstract public function storeProcess(BusinessProcess $name); +}