aboutsummaryrefslogtreecommitdiffstats
path: root/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/AnnotationTypeDataDefinition.java
blob: 81dfc13011a3c973c0653c0496ec5de7ec20e88a (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package org.openecomp.sdc.be.datatypes.elements;

import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;

public class AnnotationTypeDataDefinition extends ToscaDataDefinition {

    protected String uniqueId;
    protected String type; 
    protected String description;

    protected Long creationTime;
    protected Long modificationTime;

    protected String version;
    protected boolean highestVersion;

    public AnnotationTypeDataDefinition() {}

    public AnnotationTypeDataDefinition(AnnotationTypeDataDefinition other) {
        uniqueId = other.uniqueId;
        type = other.type;
        version = other.version;
        description = other.description;
        creationTime = other.creationTime;
        modificationTime = other.modificationTime;
        highestVersion = other.highestVersion;
    }

    public String getUniqueId() {
        return uniqueId;
    }

    public void setUniqueId(String uniqueId) {
        this.uniqueId = uniqueId;
    }

    @Override
    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public Long getCreationTime() {
        return creationTime;
    }

    public void setCreationTime(Long creationTime) {
        this.creationTime = creationTime;
    }

    public Long getModificationTime() {
        return modificationTime;
    }

    public void setModificationTime(Long modificationTime) {
        this.modificationTime = modificationTime;
    }

    @Override
    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    public boolean isHighestVersion() {
        return highestVersion;
    }

    public void setHighestVersion(boolean highestVersion) {
        this.highestVersion = highestVersion;
    }

    @Override
    public String toString() {
        return getClass().getName() + ": [uniqueId=" + uniqueId + ", type=" + getType()
                + ", version=" + version + ", highestVersion=" + highestVersion
                + ", description=" + description
                + ", creationTime=" + creationTime + ", modificationTime=" + modificationTime + "]";
    }


}