]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.api/src/org/argeo/slc/deploy/DeployedSystem.java
Upgrade all classpaths to Java 11
[gpl/argeo-slc.git] / org.argeo.slc.api / src / 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 }