f8ed1b4ce5ab8f2a37bd86d42d3ae5d5456be9cf
[ccsdk/sli.git] /
1 package org.onap.ccsdk.sli.core.sliapi.springboot.controllers.data;
2
3 import javax.persistence.Entity;
4 import javax.persistence.GeneratedValue;
5 import javax.persistence.GenerationType;
6 import javax.persistence.Id;
7 import java.util.Iterator;
8 import java.util.LinkedList;
9 import java.util.List;
10
11 @Entity
12 public class TestResultConfig {
13
14
15     @Id
16     @GeneratedValue(strategy= GenerationType.AUTO)
17     private Long id;
18
19     private String testIdentifier;
20     private String results;
21
22     public TestResultConfig()
23     {
24
25     }
26     public TestResultConfig(String testIdentifier, String results) {
27         this.testIdentifier = testIdentifier;
28         this.results = results;
29     }
30
31     public String getTestIdentifier() {
32         return testIdentifier;
33     }
34
35     public void setTestIdentifier(String testIdentifier) {
36         this.testIdentifier = testIdentifier;
37     }
38
39     public String getResults() {
40         return results;
41     }
42
43     public void setResults(String results) {
44         this.results = results;
45     }
46
47
48
49
50 }