X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=trash%2Fexamples%2Forg.argeo.slc.example01%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fexample%2FExampleDeployedSystem.java;fp=trash%2Fexamples%2Forg.argeo.slc.example01%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fexample%2FExampleDeployedSystem.java;h=0000000000000000000000000000000000000000;hb=431a32bdd1ae85a7f81944ef66660fdc63583970;hp=c33d4edf0f5fa178c8f7774843e2a76477c2c3c8;hpb=3d891e3d57c44fffc01b019a448824dab485b3e0;p=gpl%2Fargeo-slc.git diff --git a/trash/examples/org.argeo.slc.example01/src/main/java/org/argeo/slc/example/ExampleDeployedSystem.java b/trash/examples/org.argeo.slc.example01/src/main/java/org/argeo/slc/example/ExampleDeployedSystem.java deleted file mode 100644 index c33d4edf0..000000000 --- a/trash/examples/org.argeo.slc.example01/src/main/java/org/argeo/slc/example/ExampleDeployedSystem.java +++ /dev/null @@ -1,50 +0,0 @@ -package org.argeo.slc.example; - -import org.argeo.slc.build.Distribution; -import org.argeo.slc.deploy.DeployedSystem; -import org.argeo.slc.deploy.DeploymentData; -import org.argeo.slc.deploy.TargetData; -import org.argeo.slc.example.appli.ExampleAppli; - -/** Example deployed sytem. */ -public class ExampleDeployedSystem implements DeployedSystem { - private String deployedSystemId; - private int skipFreq = 2; - - public String getDeployedSystemId() { - return deployedSystemId.toString(); - } - - /** Sets deployed system id. */ - public void setDeployedSystemId(String deployedSystemId) { - this.deployedSystemId = deployedSystemId; - } - - /** Creates an instance of the example appli. */ - public ExampleAppli getExampleAppliInstance() { - ExampleAppli appli = new ExampleAppli(); - appli.setSkipFreq(skipFreq); - return appli; - } - - /** Sets the frequency used to skip lines. */ - public void setSkipFreq(int skipFreq) { - this.skipFreq = skipFreq; - } - - public Distribution getDistribution() { - // TODO Auto-generated method stub - return null; - } - - public DeploymentData getDeploymentData() { - // TODO Auto-generated method stub - return null; - } - - public TargetData getTargetData() { - // TODO Auto-generated method stub - return null; - } - -}