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