Fix 'Changing VFC version on template wipes previously assigned property values based...
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / merge / property / MergePropertyData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.be.components.merge.property;
21
22 import java.util.ArrayList;
23 import java.util.List;
24 import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
25
26 /**
27  * A POJO which represents an instance property data definition (a {@link org.openecomp.sdc.be.model.ComponentInstanceProperty} or {@link
28  * org.openecomp.sdc.be.model.ComponentInstanceInput}) that its value needs to be merged during an upgrade of a VSP.
29  */
30 public class MergePropertyData {
31
32     /*The previous state of the instance property to merge */
33     private PropertyDataDefinition oldProp;
34     /*The new state of the instance property to merge */
35     private PropertyDataDefinition newProp;
36     private List<String> getInputNamesToMerge = new ArrayList<>();
37
38     public PropertyDataDefinition getOldProp() {
39         return oldProp;
40     }
41
42     public MergePropertyData setOldProp(PropertyDataDefinition oldProp) {
43         this.oldProp = oldProp;
44         return this;
45     }
46
47     public PropertyDataDefinition getNewProp() {
48         return newProp;
49     }
50
51     public MergePropertyData setNewProp(PropertyDataDefinition newProp) {
52         this.newProp = newProp;
53         return this;
54     }
55
56     public void addAddGetInputNamesToMerge(List<String> getInputsNameToMerge) {
57         getInputNamesToMerge.addAll(getInputsNameToMerge);
58     }
59
60     public List<String> getGetInputNamesToMerge() {
61         return getInputNamesToMerge;
62     }
63
64     public boolean isGetInputProp() {
65         return oldProp.isGetInputProperty();
66     }
67 }