Added oparent to sdc main
[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
21 package org.openecomp.sdc.be.components.merge.property;
22
23 import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28 /**
29  * A POJO which represents an instance property data definition (a {@link org.openecomp.sdc.be.model.ComponentInstanceProperty} or {@link org.openecomp.sdc.be.model.ComponentInstanceInput})
30  * that its value needs to be merged during an upgrade of a VSP.
31  *
32  */
33 public class MergePropertyData {
34
35     /*The previous state of the instance property to merge */
36     private PropertyDataDefinition oldProp;
37     /*The new state of the instance property to merge */
38     private PropertyDataDefinition newProp;
39
40     private List<String> getInputNamesToMerge = new ArrayList<>();
41
42     public PropertyDataDefinition getOldProp() {
43         return oldProp;
44     }
45
46     public MergePropertyData setOldProp(PropertyDataDefinition oldProp) {
47         this.oldProp = oldProp;
48         return this;
49     }
50
51     public MergePropertyData setNewProp(PropertyDataDefinition newProp) {
52         this.newProp = newProp;
53         return this;
54     }
55
56     public PropertyDataDefinition getNewProp() {
57         return newProp;
58     }
59
60     public void addAddGetInputNamesToMerge(List<String> getInputsNameToMerge) {
61         getInputNamesToMerge.addAll(getInputsNameToMerge);
62     }
63
64     public List<String> getGetInputNamesToMerge() {
65         return getInputNamesToMerge;
66     }
67
68     public boolean isGetInputProp() {
69         return oldProp.isGetInputProperty();
70     }
71     
72 }