Merge tag 'v2.3.15' into testing
[gpl/argeo-slc.git] / org.argeo.api.slc / src / org / argeo / api / slc / deploy / DeployedSystem.java
diff --git a/org.argeo.api.slc/src/org/argeo/api/slc/deploy/DeployedSystem.java b/org.argeo.api.slc/src/org/argeo/api/slc/deploy/DeployedSystem.java
new file mode 100644 (file)
index 0000000..7c264cc
--- /dev/null
@@ -0,0 +1,18 @@
+package org.argeo.api.slc.deploy;\r
+\r
+import org.argeo.api.slc.build.Distribution;\r
+\r
+/** An instance of a software system. */\r
+public interface DeployedSystem extends TargetData {\r
+       /** Unique ID for this system instance. */\r
+       public String getDeployedSystemId();\r
+\r
+       /** Underlying packages */\r
+       public Distribution getDistribution();\r
+\r
+       /** Data required to initialize the instance (e.g. DB dump, etc.). */\r
+       public DeploymentData getDeploymentData();\r
+\r
+       /** Resources required by the system (ports, disk location, etc.) */\r
+       public TargetData getTargetData();\r
+}\r