]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - cms/org.argeo.slc.support/src/org/argeo/slc/lib/linux/SimpleLinuxHost.java
Clarify SLC project structure.
[gpl/argeo-slc.git] / cms / org.argeo.slc.support / src / org / argeo / slc / lib / linux / SimpleLinuxHost.java
diff --git a/cms/org.argeo.slc.support/src/org/argeo/slc/lib/linux/SimpleLinuxHost.java b/cms/org.argeo.slc.support/src/org/argeo/slc/lib/linux/SimpleLinuxHost.java
new file mode 100644 (file)
index 0000000..d51497a
--- /dev/null
@@ -0,0 +1,42 @@
+package org.argeo.slc.lib.linux;
+
+import org.argeo.slc.build.Distribution;
+import org.argeo.slc.deploy.DeployedSystem;
+import org.argeo.slc.deploy.DeploymentData;
+import org.argeo.slc.deploy.TargetData;
+
+public class SimpleLinuxHost implements DeployedSystem {
+       private DeploymentData deploymentData;
+       private Distribution distribution;
+       private TargetData targetData;
+
+       public String getDeployedSystemId() {
+               // TODO Auto-generated method stub
+               return null;
+       }
+
+       public DeploymentData getDeploymentData() {
+               return deploymentData;
+       }
+
+       public void setDeploymentData(DeploymentData deploymentData) {
+               this.deploymentData = deploymentData;
+       }
+
+       public Distribution getDistribution() {
+               return distribution;
+       }
+
+       public void setDistribution(Distribution distribution) {
+               this.distribution = distribution;
+       }
+
+       public TargetData getTargetData() {
+               return targetData;
+       }
+
+       public void setTargetData(TargetData targetData) {
+               this.targetData = targetData;
+       }
+
+}