Project

General

Profile

« Previous | Next » 

Revision 47342

partial repohi implementation

View differences:

WorkflowProcessInfo.java
29 29
	private String errorStacktrace;
30 30
	private LinkedHashSet<Pair<String, String>> outputParams = new LinkedHashSet<>();
31 31
	private String parentProfileId;
32
	private String workerId;
32 33
	private String workerUrl;
33 34

  
34 35
	public String getId() {
......
175 176
		this.parentProfileId = parentProfileId;
176 177
	}
177 178

  
179
	public String getWorkerId() {
180
		return workerId;
181
	}
182

  
183
	public void setWorkerId(final String workerId) {
184
		this.workerId = workerId;
185
	}
186

  
178 187
	public String getWorkerUrl() {
179 188
		return workerUrl;
180 189
	}
......
187 196
	public String toString() {
188 197
		return String.format("[process id='%s' name='%s']", id, name);
189 198
	}
199

  
190 200
}

Also available in: Unified diff