aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openecomp/sdc/tosca/parser/config/JToscaValidationIssueInfo.java
blob: 31ab0a0a7665100a86fe44107356033c7954759f (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
package org.openecomp.sdc.tosca.parser.config;

public class JToscaValidationIssueInfo {

    private String issueType;
    private String sinceCsarConformanceLevel;

    public JToscaValidationIssueInfo() {}

    public String getIssueType() {
        return issueType;
    }

    public void setIssueType(String issueType) {
        this.issueType = issueType;
    }

    public String getSinceCsarConformanceLevel() {
        return sinceCsarConformanceLevel;
    }

    public void setSinceCsarConformanceLevel(String sinceCsarConformanceLevel) {
        this.sinceCsarConformanceLevel = sinceCsarConformanceLevel;
    }

    public void cloneData(JToscaValidationIssueInfo other) {
        this.issueType = other.getIssueType();
        this.sinceCsarConformanceLevel = other.getSinceCsarConformanceLevel();
    }

}