Revision 39626
Added by Michele Artini about 9 years ago
modules/dnet-msro-service/branches/workflow_templates/src/main/java/eu/dnetlib/msro/workflows/util/WorkflowParamUI.java | ||
---|---|---|
1 |
package eu.dnetlib.msro.workflows.util; |
|
2 |
|
|
3 |
public class WorkflowParamUI { |
|
4 |
private String label = ""; |
|
5 |
private String url = ""; |
|
6 |
private boolean paramRequired = false; |
|
7 |
|
|
8 |
public String getLabel() { |
|
9 |
return label; |
|
10 |
} |
|
11 |
public void setLabel(String label) { |
|
12 |
this.label = label; |
|
13 |
} |
|
14 |
public String getUrl() { |
|
15 |
return url; |
|
16 |
} |
|
17 |
public void setUrl(String url) { |
|
18 |
this.url = url; |
|
19 |
} |
|
20 |
public boolean isParamRequired() { |
|
21 |
return paramRequired; |
|
22 |
} |
|
23 |
public void setParamRequired(boolean paramRequired) { |
|
24 |
this.paramRequired = paramRequired; |
|
25 |
} |
|
26 |
|
|
27 |
} |
Also available in: Unified diff