aboutsummaryrefslogtreecommitdiffstats
path: root/ms/sliboot/src/main/java/org/onap/ccsdk/apps/ms/sliboot/data/TestResultOperational.java
blob: b9d09934e2fb85e5896e03ce42c50d6934839091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package org.onap.ccsdk.apps.ms.sliboot.data;

import javax.persistence.*;

@Entity(name="TEST_RESULT_OPERATIONAL")
@Table(name="TEST_RESULT_OPERATIONAL")
public class TestResultOperational {


    @Id
    @GeneratedValue(strategy= GenerationType.AUTO)
    private Long id;

    private String testIdentifier;
    private String results;

    public TestResultOperational()
    {

    }

    public TestResultOperational(String testIdentifier, String results) {
        this.testIdentifier = testIdentifier;
        this.results = results;
    }

    public String getTestIdentifier() {
        return testIdentifier;
    }

    public void setTestIdentifier(String testIdentifier) {
        this.testIdentifier = testIdentifier;
    }

    public String getResults() {
        return results;
    }

    public void setResults(String results) {
        this.results = results;
    }




}