]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/DeployedSystem.java
Improve executions and system calls
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / deploy / DeployedSystem.java
1 package org.argeo.slc.deploy;
2
3 import org.argeo.slc.build.Distribution;
4
5 /** An instance of a software system. */
6 public interface DeployedSystem extends TargetData {
7 /** Unique ID for this system instance. */
8 public String getDeployedSystemId();
9
10 /** Underlying packages */
11 public Distribution getDistribution();
12
13 /** Data required to initialize the instance (e.g. DB dump, etc.). */
14 public DeploymentData getDeploymentData();
15
16 /** Resources required by the system (ports, disk location, etc.) */
17 public TargetData getTargetData();
18 }