summaryrefslogtreecommitdiffstats
path: root/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyDataDefinition.java
blob: 218b64874267a00ba29bac2688cde096a327ba87 (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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
/*-
 * ============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 org.apache.commons.collections.CollectionUtils.isNotEmpty;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import org.apache.commons.collections.CollectionUtils;
import org.openecomp.sdc.be.datatypes.enums.JsonPresentationFields;
import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;

public class PropertyDataDefinition extends ToscaDataDefinition {

	private String uniqueId;

	// "boolean", "string", "float", "integer", "version" })
	private String type;

	private Boolean required = Boolean.FALSE;

	protected boolean definition = false;

	private String defaultValue;

	private String description;

	private SchemaDefinition schema;

	private boolean password;

	private String name;

	private String value;

	private String label;
	protected Boolean hidden = Boolean.FALSE;
	private Boolean immutable = Boolean.FALSE;

	private String inputPath;
	private String status;
	private String inputId;
	private String instanceUniqueId;
	private String propertyId;
    private String parentPropertyType;
    private String subPropertyInputPath;

	private List<Annotation> annotations;
	/**
	 * The resource id which this property belongs to
	 */
	private String parentUniqueId;

	private List<GetInputValueDataDefinition> getInputValues;

	private Boolean isDeclaredListInput = Boolean.FALSE;

	private List<GetPolicyValueDataDefinition> getPolicyValues;

	public PropertyDataDefinition() {
		super();
	}

	public PropertyDataDefinition(Map<String, Object> pr) {
		super(pr);

	}

	public PropertyDataDefinition(PropertyDataDefinition propertyDataDefinition) {
		super();
		this.setUniqueId(propertyDataDefinition.getUniqueId());
		this.setRequired(propertyDataDefinition.isRequired());
		this.setDefaultValue(propertyDataDefinition.getDefaultValue());
		this.setDescription(propertyDataDefinition.getDescription());
		this.setSchema(propertyDataDefinition.getSchema());
		this.setPassword(propertyDataDefinition.isPassword());
		this.setType(propertyDataDefinition.getType());
		this.setName(propertyDataDefinition.getName());
		this.setValue(propertyDataDefinition.getValue());
		this.setRequired(propertyDataDefinition.isRequired());
		this.setHidden(propertyDataDefinition.isHidden());
		this.setLabel(propertyDataDefinition.getLabel());
		this.setImmutable(propertyDataDefinition.isImmutable());
		this.setParentUniqueId(propertyDataDefinition.getParentUniqueId());
		this.setOwnerId(propertyDataDefinition.getOwnerId());
		this.setGetInputValues(propertyDataDefinition.getGetInputValues());
		this.setGetPolicyValues(propertyDataDefinition.getGetPolicyValues());
		this.setInputPath(propertyDataDefinition.getInputPath());
		this.setStatus(propertyDataDefinition.getStatus());
		this.setInputId(propertyDataDefinition.getInputId());
		this.setInstanceUniqueId(propertyDataDefinition.getInstanceUniqueId());
		this.setPropertyId(propertyDataDefinition.getPropertyId());
		this.parentPropertyType = propertyDataDefinition.getParentPropertyType();
		this.subPropertyInputPath = propertyDataDefinition.getSubPropertyInputPath();
		if(isNotEmpty(propertyDataDefinition.annotations)){
		    this.setAnnotations(propertyDataDefinition.annotations);
        }
		this.setIsDeclaredListInput(propertyDataDefinition.getIsDeclaredListInput());
	}

	public String getParentPropertyType() {
	    return parentPropertyType;
	}

	public void setParentPropertyType(String parentPropertyType) {
	    this.parentPropertyType = parentPropertyType;
	}

	public String getSubPropertyInputPath() {
	    return subPropertyInputPath;
	}

	public void setSubPropertyInputPath(String subPropertyInputPath) {
	    this.subPropertyInputPath = subPropertyInputPath;
	}

	public String getInputPath() {
		return inputPath;
	}

	public void setInputPath(String inputPath) {
		this.inputPath = inputPath;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	// @Override
	public boolean isDefinition() {
		return true;
	}

	public void setDefinition(boolean definition) {
		this.definition = definition;
	}

	public String getType() {
		return type;
	}

	public String getDefaultValue() {
		return defaultValue;
	}

	public void setDefaultValue(String defaultValue) {
		this.defaultValue = defaultValue;
	}

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

	public Boolean isRequired() {
		return required;
	}

	public void setRequired(Boolean required) {
		this.required = required;
	}

	public String getDescription() {
		return description;
	}

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

	public boolean isPassword() {
		return password;
	}

	public void setPassword(boolean password) {
		this.password = password;
	}

	public String getUniqueId() {
		return uniqueId;
	}

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

	public SchemaDefinition getSchema() {
		return schema;
	}

	public void setSchema(SchemaDefinition entrySchema) {
		this.schema = entrySchema;
	}

	public String getSchemaType() {
		if (schema != null && schema.getProperty() != null) {
			return schema.getProperty().getType();
		}
		return null;
	}
	
	public PropertyDataDefinition getSchemaProperty() {
	    if (schema != null) {
	        return schema.getProperty();
	    }
	    
	    return null;
	}

	public String getLabel() {
		return label;
	}

	public void setLabel(String label) {
		this.label = label;
	}

	public Boolean isHidden() {
		return hidden;
	}

	public void setHidden(Boolean hidden) {
		this.hidden = hidden;
	}

	public Boolean isImmutable() {
		return immutable;
	}

	public void setImmutable(Boolean immutable) {
		this.immutable = immutable;
	}

	public String getParentUniqueId() {
		return getOwnerId();
	}

	public void setParentUniqueId(String parentUniqueId) {
		setOwnerId(parentUniqueId);
	}

	public List<GetInputValueDataDefinition> getGetInputValues() {
		return getInputValues;
	}

	public void setGetInputValues(List<GetInputValueDataDefinition> getInputValues) {
		this.getInputValues = getInputValues;
	}

	public List<GetPolicyValueDataDefinition> safeGetGetPolicyValues() {
		return CollectionUtils.isEmpty(getPolicyValues) ? new ArrayList<>() : getPolicyValues;
	}

	public List<GetPolicyValueDataDefinition> getGetPolicyValues() {
		return getPolicyValues;
	}

	public void setGetPolicyValues(List<GetPolicyValueDataDefinition> getPolicyValues) {
		this.getPolicyValues = getPolicyValues;
	}

	public String getStatus() {
		return status;
	}

	public void setStatus(String status) {
		this.status = status;
	}

	public String getInputId() {
		return inputId;
	}

	public void setInputId(String inputId) {
		this.inputId = inputId;
	}

	public String getInstanceUniqueId() {
		return instanceUniqueId;
	}

	public void setInstanceUniqueId(String instanceUniqueId) {
		this.instanceUniqueId = instanceUniqueId;
	}

	public String getPropertyId() {
		return propertyId;
	}

	public void setPropertyId(String propertyId) {
		this.propertyId = propertyId;
	}

	public Boolean getIsDeclaredListInput() {
		return isDeclaredListInput;
	}

	public void setIsDeclaredListInput(Boolean isDeclaredListInput) {
		this.isDeclaredListInput = isDeclaredListInput;
	}

	@Override
	public String toString() {
		return "PropertyDataDefinition [uniqueId=" + uniqueId + ", type=" + type + ", required=" + required + ", definition=" + definition + ", defaultValue=" + defaultValue + ", description=" + description + ", schema=" + schema + ", password="
				+ password + ", name=" + name + ", value=" + value + ", label=" + label + ", hidden=" + hidden + ", immutable=" + immutable + ", inputPath=" + inputPath + ", status=" + status + ", inputId=" + inputId + ", instanceUniqueId="
				+ instanceUniqueId + ", propertyId=" + propertyId + ", parentUniqueId=" + parentUniqueId + ", getInputValues=" + getInputValues + ", isDeclaredListInput=" + isDeclaredListInput
				+  ", parentPropertyType=" + parentPropertyType
				+  ", subPropertyInputPath=" + subPropertyInputPath +"]";
	}

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + ((defaultValue == null) ? 0 : defaultValue.hashCode());
		result = prime * result + (definition ? 1231 : 1237);
		result = prime * result + ((description == null) ? 0 : description.hashCode());
		result = prime * result + (password ? 1231 : 1237);
		result = prime * result + ((required == null) ? 0 : required.hashCode());
		result = prime * result + ((schema == null) ? 0 : schema.hashCode());
		result = prime * result + ((type == null) ? 0 : type.hashCode());
		result = prime * result + ((uniqueId == null) ? 0 : uniqueId.hashCode());
		result = prime * result + ((parentUniqueId == null) ? 0 : parentUniqueId.hashCode());
		result = prime * result + ((status == null) ? 0 : status.hashCode());
		result = prime * result + ((isDeclaredListInput == null) ? 0 : isDeclaredListInput.hashCode());
		return result;
	}

	public boolean typeEquals(Object obj) {
		if (this == obj) {
            return true;
        }
		if (obj == null) {
            return false;
        }
		if (getClass() != obj.getClass()) {
            return false;
        }
		PropertyDataDefinition other = (PropertyDataDefinition) obj;
		if (this.getType() == null) {
            return other.getType() == null;
        }
		if (!this.type.equals(other.type)) {
			return false;
		}
		String thisSchemaType = this.getSchemaType();
		String otherSchemaType = other.getSchemaType();
		if (thisSchemaType == null) {
			return otherSchemaType == null;
		}
		return thisSchemaType.equals(otherSchemaType);
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj) {
            return true;
        }
		if (obj == null) {
            return false;
        }
		if (getClass() != obj.getClass()) {
            return false;
        }
		PropertyDataDefinition other = (PropertyDataDefinition) obj;
		if (defaultValue == null) {
			if (other.defaultValue != null) {
                return false;
            }
		} else if (!defaultValue.equals(other.defaultValue)) {
            return false;
        }
		if (definition != other.definition) {
            return false;
        }
		if (description == null) {
			if (other.description != null) {
                return false;
            }
		} else if (!description.equals(other.description)) {
            return false;
        }
		if (password != other.password) {
            return false;
        }
		if (required == null) {
			if (other.required != null) {
                return false;
            }
		} else if (!required.equals(other.required)) {
            return false;
        }
		if (schema == null) {
			if (other.schema != null) {
                return false;
            }
		} else if (!schema.equals(other.schema)) {
            return false;
        }
		if (type == null) {
			if (other.type != null) {
                return false;
            }
		} else if (!type.equals(other.type)) {
            return false;
        }
		if (parentUniqueId == null) {
			if (other.parentUniqueId != null) {
                return false;
            }
		} else if (!parentUniqueId.equals(other.parentUniqueId)) {
            return false;
        }
		if (uniqueId == null) {
			if (other.uniqueId != null) {
                return false;
            }
		} else if (!uniqueId.equals(other.uniqueId)) {
            return false;
        }
		if (status == null) {
			if (other.status != null) {
                return false;
            }
		} else if (!status.equals(other.status)) {
            return false;
        }
		if (isDeclaredListInput == null) {
			if (other.isDeclaredListInput != null) {
				return false;
			}
		} else if (!isDeclaredListInput.equals(other.isDeclaredListInput)) {
			return false;
		}
		return true;
	}

	@Override
	public Object getToscaPresentationValue(JsonPresentationFields field) {
		switch (field) {
		case NAME:
			return name;
		case UNIQUE_ID:
			return uniqueId;
		case PASSWORD:
			return password;
		case TYPE:
			return type;
		case DEFINITION:
			return definition;
		case VALUE:
			return value;
		case DEFAULT_VALUE:
			return defaultValue;
		default:
			return super.getToscaPresentationValue(field);
		}
	}

	@Override
	public void setToscaPresentationValue(JsonPresentationFields name, Object value) {
        switch (name) {
            case NAME:
                setName((String)value);
                break;
            case UNIQUE_ID:
                setUniqueId((String)value);
                break;
            case PASSWORD:
                setPassword((Boolean)value);
                break;
            case TYPE:
                setType((String)value);
                break;
            case DEFINITION:
                setDefinition((Boolean)value);
                break;
            case VALUE:
                setValue((String)value);
                break;
            case DEFAULT_VALUE:
                setDefaultValue((String)value);
                break;
            default:
                super.setToscaPresentationValue(name, value);
                break;
        }
    }

	private <T extends ToscaDataDefinition> boolean compareSchemaType(T other) {
		return !"list".equals(type) && !"map".equals(type) || this.getSchema().getProperty().getType().equals(((PropertyDataDefinition) other).getSchema().getProperty().getType());
	}

	@Override
	public <T extends ToscaDataDefinition> T mergeFunction(T other, boolean allowDefaultValueOverride) {
		if (this.getType() != null && 
				this.getType().equals(other.getToscaPresentationValue(JsonPresentationFields.TYPE)) && 
				compareSchemaType(other)) {
			other.setOwnerId(getOwnerId());
			if (allowDefaultValueOverride && getDefaultValue() != null && !getDefaultValue().isEmpty()) {
                other.setToscaPresentationValue(JsonPresentationFields.DEFAULT_VALUE, getDefaultValue());
			}
			return other;
		}
		return null;
	}

	public void convertPropertyDataToInstancePropertyData() {
		if (null != value) {
            defaultValue = value;
        }
	}

	public boolean isGetInputProperty() {
		return this.getGetInputValues() != null && !this.getGetInputValues().isEmpty();
	}

	public void setAnnotations(List<Annotation> newAnnotations) {
		Set<Annotation> annotationSet = isNotEmpty(newAnnotations) ? new HashSet<>(newAnnotations) : new HashSet<>();
		//We would to prioritize the new valid annotations over the old ones if the same one existed.
		if(this.annotations != null){
			for(Annotation oldInputAnnotation : this.annotations)
				annotationSet.add(oldInputAnnotation);
		}

		this.annotations = new ArrayList<>(annotationSet);
		setToscaPresentationValue(JsonPresentationFields.ANNOTATIONS, this.annotations);
	}
	
	public List<Annotation> getAnnotations() {
		return (List<Annotation>) getToscaPresentationValue(JsonPresentationFields.ANNOTATIONS);
	}

}