X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fdeploy%2FDeployedSystem.java;fp=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fdeploy%2FDeployedSystem.java;h=0000000000000000000000000000000000000000;hb=d07cf3c7dfdeafa2b1efafe547b54d56a8b52ced;hp=be28154fe1db2701ffdf239b363417f24eb88615;hpb=8596685647867307b862b8a89742b6a62ba75fcd;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.api/src/org/argeo/slc/deploy/DeployedSystem.java b/org.argeo.slc.api/src/org/argeo/slc/deploy/DeployedSystem.java deleted file mode 100644 index be28154fe..000000000 --- a/org.argeo.slc.api/src/org/argeo/slc/deploy/DeployedSystem.java +++ /dev/null @@ -1,18 +0,0 @@ -package org.argeo.slc.deploy; - -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(); -}