4c3709e6eced0273fc62baa04481ec30e95bb456
[ccsdk/sli/core.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 TestResultOperational {
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 TestResultOperational()
23     {
24
25     }
26
27     public TestResultOperational(String testIdentifier, String results) {
28         this.testIdentifier = testIdentifier;
29         this.results = results;
30     }
31
32     public String getTestIdentifier() {
33         return testIdentifier;
34     }
35
36     public void setTestIdentifier(String testIdentifier) {
37         this.testIdentifier = testIdentifier;
38     }
39
40     public String getResults() {
41         return results;
42     }
43
44     public void setResults(String results) {
45         this.results = results;
46     }
47
48
49
50
51 }