]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/support/deploy/HttpdServerDeployment.java
Introduce org.argeo.slc.specs
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / support / deploy / HttpdServerDeployment.java
1 package org.argeo.slc.support.deploy;
2
3 import org.argeo.slc.core.build.Distribution;
4 import org.argeo.slc.core.deploy.DeployedSystem;
5 import org.argeo.slc.core.deploy.Deployment;
6 import org.argeo.slc.core.deploy.DeploymentData;
7 import org.argeo.slc.core.deploy.TargetData;
8
9 public class HttpdServerDeployment implements Deployment {
10 private HttpdServerTargetData targetData;
11
12 public void execute() {
13 // TODO Auto-generated method stub
14
15 }
16
17 public DeployedSystem getDeployedSystem() {
18 // TODO Auto-generated method stub
19 return null;
20 }
21
22 public void setDeploymentData(DeploymentData deploymentData) {
23 // TODO Auto-generated method stub
24
25 }
26
27 public void setDistribution(Distribution distribution) {
28 }
29
30 public void setTargetData(TargetData targetData) {
31 this.targetData = (HttpdServerTargetData) targetData;
32 }
33
34 }