Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
TestGroupInfo.java
Go to the documentation of this file.
1 package com.griddynamics.jagger.engine.e1.collector.testgroup;
2 
3 import com.griddynamics.jagger.master.CompositeTask;
4 
13 public class TestGroupInfo {
14  private CompositeTask testGroup;
15  private String sessionId;
16 
17  private long duration;
18 
19  public TestGroupInfo(){
20  }
21 
22  public TestGroupInfo(CompositeTask testGroup, String sessionId){
23  this.testGroup = testGroup;
24  this.sessionId = sessionId;
25  }
26 
28  public CompositeTask getTestGroup() {
29  return testGroup;
30  }
31 
32  public void setTestGroup(CompositeTask testGroup) {
33  this.testGroup = testGroup;
34  }
35 
37  public long getDuration() {
38  return duration;
39  }
40 
41  public void setDuration(long duration) {
42  this.duration = duration;
43  }
44 
46  public String getSessionId() {
47  return sessionId;
48  }
49 
50  public void setSessionId(String sessionId) {
51  this.sessionId = sessionId;
52  }
53 }