Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
TestGroupDecisionMakerInfo.java
Go to the documentation of this file.
1 package com.griddynamics.jagger.engine.e1.collector.testgroup;
2 
3 import com.griddynamics.jagger.engine.e1.collector.limits.DecisionPerTest;
4 import com.griddynamics.jagger.master.CompositeTask;
5 
6 import java.util.Set;
7 
17  private CompositeTask testGroup;
18  private String sessionId;
19  private Set<DecisionPerTest> decisionsPerTest;
20 
21  public TestGroupDecisionMakerInfo(CompositeTask testGroup, String sessionId, Set<DecisionPerTest> decisionsPerTest) {
22  this.testGroup = testGroup;
23  this.sessionId = sessionId;
24  this.decisionsPerTest = decisionsPerTest;
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 String getSessionId() {
38  return sessionId;
39  }
40 
41  public void setSessionId(String sessionId) {
42  this.sessionId = sessionId;
43  }
44 
46  public Set<DecisionPerTest> getDecisionsPerTest() {
47  return decisionsPerTest;
48  }
49 
50  public void setDecisionsPerTest(Set<DecisionPerTest> decisionsPerTest) {
51  this.decisionsPerTest = decisionsPerTest;
52  }
53 
54 
55 }