]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - cms/org.argeo.slc.api/src/org/argeo/slc/deploy/DeployedSystem.java
Clarify SLC project structure.
[gpl/argeo-slc.git] / cms / org.argeo.slc.api / src / org / argeo / slc / deploy / DeployedSystem.java
diff --git a/cms/org.argeo.slc.api/src/org/argeo/slc/deploy/DeployedSystem.java b/cms/org.argeo.slc.api/src/org/argeo/slc/deploy/DeployedSystem.java
new file mode 100644 (file)
index 0000000..be28154
--- /dev/null
@@ -0,0 +1,18 @@
+package org.argeo.slc.deploy;\r
+\r
+import org.argeo.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