Refactor sliapi springboot
[ccsdk/apps.git] / ms / sliboot / src / main / java / org / onap / ccsdk / apps / ms / sliboot / data / TestResultConfig.java
1 package org.onap.ccsdk.apps.ms.sliboot.data;
2
3 import javax.persistence.*;
4
5 @Entity(name = "TEST_RESULT_CONFIG")
6 @Table(name = "TEST_RESULT_CONFIG")
7 public class TestResultConfig {
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 TestResultConfig()
18     {
19
20     }
21     public TestResultConfig(String testIdentifier, String results) {
22         this.testIdentifier = testIdentifier;
23         this.results = results;
24     }
25
26     public String getTestIdentifier() {
27         return testIdentifier;
28     }
29
30     public void setTestIdentifier(String testIdentifier) {
31         this.testIdentifier = testIdentifier;
32     }
33
34     public String getResults() {
35         return results;
36     }
37
38     public void setResults(String results) {
39         this.results = results;
40     }
41
42
43
44
45 }