Refactor sliapi springboot
[ccsdk/apps.git] / ms / sliboot / src / main / java / org / onap / ccsdk / apps / ms / sliboot / data / TestResultOperational.java
1 package org.onap.ccsdk.apps.ms.sliboot.data;
2
3 import javax.persistence.*;
4
5 @Entity(name="TEST_RESULT_OPERATIONAL")
6 @Table(name="TEST_RESULT_OPERATIONAL")
7 public class TestResultOperational {
8
9
10     @Id
11     @GeneratedValue(strategy= GenerationType.AUTO)
12     private Long id;
13
14     private String testIdentifier;
15     private String results;
16
17     public TestResultOperational()
18     {
19
20     }
21
22     public TestResultOperational(String testIdentifier, String results) {
23         this.testIdentifier = testIdentifier;
24         this.results = results;
25     }
26
27     public String getTestIdentifier() {
28         return testIdentifier;
29     }
30
31     public void setTestIdentifier(String testIdentifier) {
32         this.testIdentifier = testIdentifier;
33     }
34
35     public String getResults() {
36         return results;
37     }
38
39     public void setResults(String results) {
40         this.results = results;
41     }
42
43
44
45
46 }