]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/DeployedSystem.java
Refactor package names
[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 public String getDeployedSystemId();
8
9 public Distribution getDistribution();
10
11 public DeploymentData getDeploymentData();
12
13 public TargetData getTargetData();
14 }