forked from jenkinsci/pipeline-graph-view-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPipelineStep.java
More file actions
30 lines (25 loc) · 797 Bytes
/
PipelineStep.java
File metadata and controls
30 lines (25 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package io.jenkins.plugins.pipelinegraphview.utils;
import io.jenkins.plugins.pipelinegraphview.analysis.TimingInfo;
public class PipelineStep extends AbstractPipelineNode {
private final String stageId;
private final PipelineInputStep inputStep;
public PipelineStep(
String id,
String name,
PipelineState state,
String type,
String title,
String stageId,
PipelineInputStep inputStep,
TimingInfo timingInfo) {
super(id, name, state, type, title, timingInfo);
this.stageId = stageId;
this.inputStep = inputStep;
}
public String getStageId() {
return stageId;
}
public PipelineInputStep getInputStep() {
return inputStep;
}
}