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=09c9e5093fe1353aaac344ac8a8caf2e1dcc0778;hp=be28154fe1db2701ffdf239b363417f24eb88615;hpb=8ff996a3380166be2ae9cf0ef0fa22c58e11746a;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(); -}