Introduce CMS event bus and use it in UI.
[lgpl/argeo-commons.git] / org.argeo.api.cms / src / org / argeo / api / cms / CmsState.java
index 3828b080b6e029983de83f2311051243ca870ee1..181e4b9c661f716424f0d183bf97514431680b51 100644 (file)
@@ -1,5 +1,7 @@
 package org.argeo.api.cms;
 
+import java.nio.file.Path;
+import java.util.List;
 import java.util.UUID;
 
 /** A running node process. */
@@ -9,4 +11,14 @@ public interface CmsState {
        Long getAvailableSince();
 
        UUID getUuid();
+
+       String getDeployProperty(String property);
+
+       /**
+        * A list of size of the max count for this property, with null values when the
+        * property is not set, or an empty list (size 0) if this property is unknown.
+        */
+       List<String> getDeployProperties(String property);
+
+       Path getDataPath(String relativePath);
 }