We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8038be commit 476d81dCopy full SHA for 476d81d
1 file changed
src/main/java/eu/openanalytics/containerproxy/model/spec/Parameters.java
@@ -29,6 +29,7 @@ public class Parameters {
29
30
private List<ParameterDefinition> definitions;
31
private List<ValueSet> valueSets;
32
+ private String template;
33
34
public List<ParameterDefinition> getDefinitions() {
35
return definitions;
@@ -50,6 +51,14 @@ public void setValueSets(List<ValueSet> valueSets) {
50
51
this.valueSets = valueSets;
52
}
53
54
+ public String getTemplate() {
55
+ return template;
56
+ }
57
+
58
+ public void setTemplate(String template) {
59
+ this.template = template;
60
61
62
public static class ValueSet {
63
64
private AccessControl accessControl;
0 commit comments