]> git.argeo.org Git - gpl/argeo-slc.git/blob - legacy/org.argeo.slc.support/src/org/argeo/slc/lib/linux/SimpleLinuxHost.java
Clarify overall project structure.
[gpl/argeo-slc.git] / legacy / org.argeo.slc.support / src / org / argeo / slc / lib / linux / SimpleLinuxHost.java
1 package org.argeo.slc.lib.linux;
2
3 import org.argeo.slc.build.Distribution;
4 import org.argeo.slc.deploy.DeployedSystem;
5 import org.argeo.slc.deploy.DeploymentData;
6 import org.argeo.slc.deploy.TargetData;
7
8 public class SimpleLinuxHost implements DeployedSystem {
9 private DeploymentData deploymentData;
10 private Distribution distribution;
11 private TargetData targetData;
12
13 public String getDeployedSystemId() {
14 // TODO Auto-generated method stub
15 return null;
16 }
17
18 public DeploymentData getDeploymentData() {
19 return deploymentData;
20 }
21
22 public void setDeploymentData(DeploymentData deploymentData) {
23 this.deploymentData = deploymentData;
24 }
25
26 public Distribution getDistribution() {
27 return distribution;
28 }
29
30 public void setDistribution(Distribution distribution) {
31 this.distribution = distribution;
32 }
33
34 public TargetData getTargetData() {
35 return targetData;
36 }
37
38 public void setTargetData(TargetData targetData) {
39 this.targetData = targetData;
40 }
41
42 }