]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedStepAnswer.java
Rename packages
[gpl/argeo-slc.git] / org.argeo.slc.detached / src / main / java / org / argeo / slc / detached / DetachedStepAnswer.java
1 package org.argeo.slc.detached;
2
3 import java.util.Properties;
4
5 public class DetachedStepAnswer {
6 public static int PROCESSED = 0;
7 public static int ERROR = 1;
8 public static int SKIPPED = 2;
9
10 private Properties outputParameters;
11 private int outputStatus;
12 private String log;
13
14 public Properties getOutputParameters() {
15 return outputParameters;
16 }
17
18 public void setOutputParameters(Properties outputParameters) {
19 this.outputParameters = outputParameters;
20 }
21
22 public int getOutputStatus() {
23 return outputStatus;
24 }
25
26 public void setOutputStatus(int outputStatus) {
27 this.outputStatus = outputStatus;
28 }
29
30 public String getLog() {
31 return log;
32 }
33
34 public void setLog(String log) {
35 this.log = log;
36 }
37
38 }