X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=runtime%2Forg.argeo.slc.specs%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fdeploy%2FDeployedSystem.java;fp=runtime%2Forg.argeo.slc.specs%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fdeploy%2FDeployedSystem.java;h=be28154fe1db2701ffdf239b363417f24eb88615;hb=e7ddf0b3a271a2f22108ee5b9fba69888f5c78ec;hp=1642b095c6366a520e9d55d01e7d2fd54dbfcbae;hpb=8695884efeb66c4bab1b268bc8a82099eaa61a57;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/DeployedSystem.java b/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/DeployedSystem.java index 1642b095c..be28154fe 100644 --- a/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/DeployedSystem.java +++ b/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/DeployedSystem.java @@ -4,11 +4,15 @@ import org.argeo.slc.build.Distribution; /** An instance of a software system. */ public interface DeployedSystem extends TargetData { + /** Unique ID for this system instance. */ public String getDeployedSystemId(); + /** Underlying packages */ public Distribution getDistribution(); + /** Data required to initialize the instance (e.g. DB dump, etc.). */ public DeploymentData getDeploymentData(); + /** Resources required by the system (ports, disk location, etc.) */ public TargetData getTargetData(); }