aboutsummaryrefslogtreecommitdiffstats
path: root/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/datatypes/LicensingVersion.java
blob: 82838cc6b5c3840d5a2e464947ab75480de6dda1 (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.ci.tests.datatypes;

public class LicensingVersion {

    private String id;
    private String label;

    public LicensingVersion(String id, String label) {
        this.id = id;
        this.label = label;
    }

    public LicensingVersion() {
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    @Override
    public String toString() {
        return "LicensingVersion{" +
                "id='" + id + '\'' +
                ", label='" + label + '\'' +
                '}';
    }
}