]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.cms/src/org/argeo/api/cms/CmsState.java
Remove branch from root project name
[lgpl/argeo-commons.git] / org.argeo.api.cms / src / org / argeo / api / cms / CmsState.java
1 package org.argeo.api.cms;
2
3 import java.nio.file.Path;
4 import java.util.List;
5 import java.util.UUID;
6
7 /** A running node process. */
8 public interface CmsState {
9 String getHostname();
10
11 Long getAvailableSince();
12
13 UUID getUuid();
14
15 String getDeployProperty(String property);
16
17 /**
18 * A list of size of the max count for this property, with null values when the
19 * property is not set, or an empty list (size 0) if this property is unknown.
20 */
21 List<String> getDeployProperties(String property);
22
23 Path getDataPath(String relativePath);
24 }