026b1d79980bd29e5a6b7bd72cede5eff1f6abfd
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / ModelData.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19 package org.openecomp.sdc.be.resources.data;
20
21 import java.util.HashMap;
22 import java.util.Map;
23 import lombok.Getter;
24 import org.openecomp.sdc.be.dao.graph.datatype.GraphNode;
25 import org.openecomp.sdc.be.dao.neo4j.GraphPropertiesDictionary;
26 import org.openecomp.sdc.be.datatypes.enums.NodeTypeEnum;
27
28 @Getter
29 public class ModelData extends GraphNode {
30
31     private final String name;
32     private final String uniqueId;
33
34     public ModelData(final String name, final String uniqueId) {
35         super(NodeTypeEnum.Model);
36         this.name = name;
37         this.uniqueId = uniqueId;
38     }
39
40     public ModelData(final Map<String, Object> properties) {
41         super(NodeTypeEnum.Model);
42         name = (String) properties.get(GraphPropertiesDictionary.NAME.getProperty());
43         uniqueId = (String) properties.get(GraphPropertiesDictionary.UNIQUE_ID.getProperty());
44     }
45
46     @Override
47     public Map<String, Object> toGraphMap() {
48         final Map<String, Object> map = new HashMap<>();
49         addIfExists(map, GraphPropertiesDictionary.NAME, name);
50         addIfExists(map, GraphPropertiesDictionary.UNIQUE_ID, uniqueId);
51         return map;
52     }
53
54 }