]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleDeployedSystem.java
Introduce end to end testing with logging of results
[gpl/argeo-slc.git] / org.argeo.slc / src / test / java / org / argeo / slc / example / ExampleDeployedSystem.java
1 package org.argeo.slc.example;
2
3 import org.argeo.slc.core.deploy.DeployedSystem;
4 import org.argeo.slc.core.deploy.DeployedSystemId;
5 import org.argeo.slc.example.appli.ExampleAppli;
6
7 public class ExampleDeployedSystem implements DeployedSystem {
8 private DeployedSystemId deployedSystemId;
9
10 public DeployedSystemId getDeployedSystemId() {
11 return deployedSystemId;
12 }
13
14 public void setDeployedSystemId(DeployedSystemId deployedSystemId) {
15 this.deployedSystemId = deployedSystemId;
16 }
17
18 public ExampleAppli getExampleAppliInstance(){
19 return new ExampleAppli();
20 }
21 }