]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/process/SlcExecutionSpecField.java
Introduce the Executable interface
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / process / SlcExecutionSpecField.java
1 package org.argeo.slc.process;
2
3 public class SlcExecutionSpecField {
4 private String label;
5 private String type;
6 private String defaultValue;
7 private String listValues;
8
9 public String getLabel() {
10 return label;
11 }
12
13 public void setLabel(String label) {
14 this.label = label;
15 }
16
17 public String getType() {
18 return type;
19 }
20
21 public void setType(String type) {
22 this.type = type;
23 }
24
25 public String getDefaultValue() {
26 return defaultValue;
27 }
28
29 public void setDefaultValue(String defaultValue) {
30 this.defaultValue = defaultValue;
31 }
32
33 public String getListValues() {
34 return listValues;
35 }
36
37 public void setListValues(String listValues) {
38 this.listValues = listValues;
39 }
40
41 }