]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/deploy/DeployedSystem.java
3b29c5ae4c907e9a40ab3a93cfa1317a44b24eef
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / deploy / DeployedSystem.java
1 package org.argeo.slc.core.deploy;
2
3 import org.argeo.slc.core.build.Distribution;
4
5 /** An instance of a software system. */
6 public interface DeployedSystem<DISTRIBUTION extends Distribution, TARGET_DATA extends TargetData>
7 extends TargetData {
8 public String getDeployedSystemId();
9
10 public DISTRIBUTION getDistribution();
11
12 public DeploymentData getDeploymentData();
13
14 public TARGET_DATA getTargetData();
15 }