Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
JHttpUserScenarioStepInvocationResult.java
Go to the documentation of this file.
1 package com.griddynamics.jagger.invoker.scenario;
2 
9  private final String stepId;
10  private final String stepDisplayName;
11  private final Number latency;
12  private final Boolean succeeded;
13 
14  public JHttpUserScenarioStepInvocationResult(String stepId, String stepDisplayName, Number latency, Boolean succeeded) {
15  this.stepId = stepId;
16  this.stepDisplayName = stepDisplayName;
17  this.latency = latency;
18  this.succeeded = succeeded;
19  }
20 
21  public String getStepId() {
22  return stepId;
23  }
24 
25  public String getStepDisplayName() {
26  return stepDisplayName;
27  }
28 
29  public Number getLatency() {
30  return latency;
31  }
32 
33  public Boolean getSucceeded() {
34  return succeeded;
35  }
36 }