re base code
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / ServiceMetadataData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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.resources.data;
22
23 import org.openecomp.sdc.be.dao.neo4j.GraphPropertiesDictionary;
24 import org.openecomp.sdc.be.datatypes.components.ServiceMetadataDataDefinition;
25 import org.openecomp.sdc.be.datatypes.enums.NodeTypeEnum;
26
27 import java.util.Map;
28
29 public class ServiceMetadataData extends ComponentMetadataData {
30
31         public ServiceMetadataData() {
32                 super(NodeTypeEnum.Service, new ServiceMetadataDataDefinition());
33         }
34
35         public ServiceMetadataData(ServiceMetadataDataDefinition serviceMetadataDataDefinition) {
36                 super(NodeTypeEnum.Service, serviceMetadataDataDefinition);
37         }
38
39         public ServiceMetadataData(Map<String, Object> properties) {
40                 super(NodeTypeEnum.Service, new ServiceMetadataDataDefinition(), properties);
41                 ((ServiceMetadataDataDefinition) metadataDataDefinition)
42                                 .setProjectCode((String) properties.get(GraphPropertiesDictionary.PROJECT_CODE.getProperty()));
43                 ((ServiceMetadataDataDefinition) metadataDataDefinition).setDistributionStatus(
44                                 (String) properties.get(GraphPropertiesDictionary.DISTRIBUTION_STATUS.getProperty()));
45         }
46
47         @Override
48         public String getUniqueIdKey() {
49                 return GraphPropertiesDictionary.UNIQUE_ID.getProperty();
50         }
51
52         @Override
53         public Map<String, Object> toGraphMap() {
54                 Map<String, Object> graphMap = super.toGraphMap();
55                 addIfExists(graphMap, GraphPropertiesDictionary.PROJECT_CODE,
56                                 ((ServiceMetadataDataDefinition) metadataDataDefinition).getProjectCode());
57                 addIfExists(graphMap, GraphPropertiesDictionary.DISTRIBUTION_STATUS,
58                                 ((ServiceMetadataDataDefinition) metadataDataDefinition).getDistributionStatus());
59                 return graphMap;
60         }
61
62 }