aboutsummaryrefslogtreecommitdiffstats
path: root/sliapi/springboot/src/main/java/org/onap/ccsdk/sli/core/sliapi/springboot/controllers/data/TestResultConfig.java
blob: f8ed1b4ce5ab8f2a37bd86d42d3ae5d5456be9cf (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
47
48
49
50
package org.onap.ccsdk.sli.core.sliapi.springboot.controllers.data;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;

@Entity
public class TestResultConfig {


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

    private String testIdentifier;
    private String results;

    public TestResultConfig()
    {

    }
    public TestResultConfig(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;
    }




}