]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.autoui/src/main/java/org/argeo/slc/autoui/DetachedStepRequest.java
Introduce detached execution server.
[gpl/argeo-slc.git] / org.argeo.slc.autoui / src / main / java / org / argeo / slc / autoui / DetachedStepRequest.java
1 package org.argeo.slc.autoui;
2
3 import java.util.Properties;
4
5 public class DetachedStepRequest {
6 private Properties inputParameters;
7 private String stepRef;
8 private String path;
9
10 public Properties getInputParameters() {
11 return inputParameters;
12 }
13
14 public void setInputParameters(Properties inputParameters) {
15 this.inputParameters = inputParameters;
16 }
17
18 public String getStepRef() {
19 return stepRef;
20 }
21
22 public void setStepRef(String stepRef) {
23 this.stepRef = stepRef;
24 }
25
26 public String getPath() {
27 return path;
28 }
29
30 public void setPath(String path) {
31 this.path = path;
32 }
33 }