Project

General

Profile

1 26600 sandro.lab
package eu.dnetlib.msro.workflows.sarasvati.loader;
2
3
import eu.dnetlib.msro.workflows.util.WorkflowsConstants;
4
5
public class WfProfileDescriptor {
6
7
	private String name;
8
	private String type;
9
	private int priority = WorkflowsConstants.DEFAULT_WF_PRIORITY;
10
	private boolean ready = false;
11
12
	private String workflowXml;
13
14
	public String getName() {
15
		return name;
16
	}
17
	public void setName(String name) {
18
		this.name = name;
19
	}
20
	public String getType() {
21
		return type;
22
	}
23
	public void setType(String type) {
24
		this.type = type;
25
	}
26
	public String getWorkflowXml() {
27
		return workflowXml;
28
	}
29
	public void setWorkflowXml(String workflowXml) {
30
		this.workflowXml = workflowXml;
31
	}
32
	public int getPriority() {
33
		return priority;
34
	}
35
	public void setPriority(int priority) {
36
		this.priority = priority;
37
	}
38
	public boolean isReady() {
39
		return ready;
40
	}
41
	public void setReady(boolean ready) {
42
		this.ready = ready;
43
	}
44
}