aboutsummaryrefslogtreecommitdiffstats
path: root/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/GroupDataDefinition.java
blob: f61801288f0bd3de80642a44de362099cb49e7c8 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.be.datatypes.elements;

import static java.util.Collections.emptyMap;

import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import org.openecomp.sdc.be.datatypes.enums.CreatedFrom;
import org.openecomp.sdc.be.datatypes.enums.JsonPresentationFields;
import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;

@Getter
@Setter
@NoArgsConstructor
public class GroupDataDefinition extends ToscaDataDefinition {

    @JsonInclude
    private String typeUid;
    @JsonInclude
    private Integer propertyValueCounter = 0;

    public GroupDataDefinition(Map<String, Object> gr) {
        super(gr);
        propertyValueCounter = 0;
    }

    public GroupDataDefinition(GroupDataDefinition other) {
        this.setName(other.getName());
        this.setUniqueId(other.getUniqueId());
        this.setType(other.getType());
        this.setVersion(other.getVersion());
        this.setInvariantUUID(other.getInvariantUUID());
        this.setDescription(other.getDescription());
        this.propertyValueCounter = other.propertyValueCounter;
        this.setGroupUUID(other.getGroupUUID());
        this.setInvariantName(other.getInvariantName());
        this.setCreatedFrom(other.getCreatedFrom());

        if (other.getMembers() != null) {
            this.setMembers(new HashMap<>(other.getMembers()));
        }
        if (other.getArtifacts() != null) {
            this.setArtifacts(new ArrayList<>(other.getArtifacts()));
        }

        if (other.getArtifactsUuid() != null) {
            this.setArtifactsUuid(new ArrayList<>(other.getArtifactsUuid()));
        }
        if (other.getProperties() != null) {
            this.setProperties(new ArrayList<>(other.getProperties()));
        }
        this.setTypeUid(other.typeUid);
    }

    public String getInvariantName() {
        String invariantName = (String) getToscaPresentationValue(JsonPresentationFields.CI_INVARIANT_NAME);
        return invariantName == null ? getName() : invariantName;
    }

    public void setInvariantName(String invariantName) {
        setToscaPresentationValue(JsonPresentationFields.CI_INVARIANT_NAME, invariantName);
    }

    public CreatedFrom getCreatedFrom() {
        String createdFrom = (String) getToscaPresentationValue(JsonPresentationFields.CREATED_FROM);
        return createdFrom == null ? CreatedFrom.CSAR : CreatedFrom.valueOf(createdFrom);
    }

    public void setCreatedFrom(CreatedFrom createdFrom) {
        setToscaPresentationValue(JsonPresentationFields.CREATED_FROM, createdFrom.name());
    }

    public String getUniqueId() {
        return (String) getToscaPresentationValue(JsonPresentationFields.UNIQUE_ID);
    }

    public void setUniqueId(String uniqueId) {
        setToscaPresentationValue(JsonPresentationFields.UNIQUE_ID, uniqueId);
    }

    @Override
    public String getType() {
        return (String) getToscaPresentationValue(JsonPresentationFields.TYPE);
    }

    @Override
    public void setType(String type) {
        setToscaPresentationValue(JsonPresentationFields.TYPE, type);
    }

    @Override
    public String getVersion() {
        return (String) getToscaPresentationValue(JsonPresentationFields.VERSION);
    }

    public void setVersion(String version) {
        setToscaPresentationValue(JsonPresentationFields.VERSION, version);
    }

    public String getInvariantUUID() {
        return (String) getToscaPresentationValue(JsonPresentationFields.INVARIANT_UUID);
    }

    public void setInvariantUUID(String invariantUUID) {
        setToscaPresentationValue(JsonPresentationFields.INVARIANT_UUID, invariantUUID);
    }

    public String getDescription() {
        return (String) getToscaPresentationValue(JsonPresentationFields.DESCRIPTION);
    }

    public void setDescription(String description) {
        setToscaPresentationValue(JsonPresentationFields.DESCRIPTION, description);
    }

    public String getGroupUUID() {
        return (String) getToscaPresentationValue(JsonPresentationFields.GROUP_UUID);
    }

    public void setGroupUUID(String groupUUID) {
        setToscaPresentationValue(JsonPresentationFields.GROUP_UUID, groupUUID);
    }

    public Map<String, String> getMembers() {
        return (Map<String, String>) getToscaPresentationValue(JsonPresentationFields.GROUP_MEMBER);
    }

    public void setMembers(Map<String, String> members) {
        setToscaPresentationValue(JsonPresentationFields.GROUP_MEMBER, members);
    }

    //this is used by GroupCompositionMixin
    public Map<String, String> resolveMembersList() {
        Map<String, String> members = getMembers();
        if (members != null) {
            return members;
        }
        return emptyMap();

    }

    public List<String> getArtifacts() {
        return (List<String>) getToscaPresentationValue(JsonPresentationFields.GROUP_ARTIFACTS);
    }

    public void setArtifacts(List<String> artifacts) {
        setToscaPresentationValue(JsonPresentationFields.GROUP_ARTIFACTS, artifacts);
    }

    public List<String> getArtifactsUuid() {
        return (List<String>) getToscaPresentationValue(JsonPresentationFields.GROUP_ARTIFACTS_UUID);
    }

    public void setArtifactsUuid(List<String> artifactsUuid) {
        setToscaPresentationValue(JsonPresentationFields.GROUP_ARTIFACTS_UUID, artifactsUuid);
    }

    public List<PropertyDataDefinition> getProperties() {
        return (List<PropertyDataDefinition>) getToscaPresentationValue(JsonPresentationFields.GROUP_PROPERTIES);
    }

    public void setProperties(List<PropertyDataDefinition> properties) {
        setToscaPresentationValue(JsonPresentationFields.GROUP_PROPERTIES, properties);
    }

    public boolean isUserDefined() {
        return CreatedFrom.UI.equals(getCreatedFrom());
    }

    public boolean isVspOriginated() {
        return CreatedFrom.CSAR.equals(getCreatedFrom());
    }

    @Override
    public String toString() {
        return "GroupDataDefinition [propertyValueCounter=" + propertyValueCounter + ", toscaPresentation=" + toscaPresentation + ", getName()="
            + getName() + ", getUniqueId()=" + getUniqueId() + ", getType()=" + getType() + ", getVersion()="
            + getVersion() + ", getInvariantUUID()=" + getInvariantUUID() + ", getDescription()=" + getDescription() + ", getPropertyValueCounter()="
            + getPropertyValueCounter() + ", getGroupUUID()=" + getGroupUUID() + ", getMembers()="
            + getMembers() + ", getArtifacts()=" + getArtifacts() + ", getArtifactsUuid()=" + getArtifactsUuid() + ", getClass()=" + getClass()
            + ", hashCode()=" + hashCode() + ", toString()="
            + super.toString() + "]";
    }

    public boolean containsInstanceAsMember(String instanceId) {
        return getMembers() != null && getMembers().values().contains(instanceId);
    }
}