]> git.argeo.org Git - gpl/argeo-slc.git/blob - DeployedSystem.java
58f5a0427f9b69dca8a2e14ea77be88da4c8203b
[gpl/argeo-slc.git] / 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
7 extends TargetData {
8 public String getDeployedSystemId();
9
10 public Distribution getDistribution();
11
12 public DeploymentData getDeploymentData();
13
14 public TargetData getTargetData();
15 }