X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.specs%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fdeploy%2FDeployedSystem.java;h=cd2e95eb992ab8d21a075d72c40865bf83ce3d24;hb=c013d066971b9ac23b7b488bd1cc6193c83b6227;hp=1642b095c6366a520e9d55d01e7d2fd54dbfcbae;hpb=2f57b9abf7e5110603e8cf952259509c76c9a162;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..cd2e95eb9 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 @@ -3,12 +3,16 @@ package org.argeo.slc.deploy; import org.argeo.slc.build.Distribution; /** An instance of a software system. */ -public interface DeployedSystem extends TargetData { +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(); }