re base code
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / ResourceCategoryData.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.enums.NodeTypeEnum;
25
26 import java.util.Map;
27
28 public class ResourceCategoryData extends CategoryData {
29
30         private String categoryName;
31
32         public ResourceCategoryData() {
33                 super(NodeTypeEnum.ResourceCategory);
34         }
35
36         public ResourceCategoryData(String categoryName, String name) {
37                 super(name, "", NodeTypeEnum.ResourceCategory);
38                 this.categoryName = categoryName;
39                 createUniqueId();
40         }
41
42         public ResourceCategoryData(Map<String, Object> properties) {
43                 super(properties, NodeTypeEnum.ResourceCategory);
44                 setCategoryName((String) properties.get(GraphPropertiesDictionary.CATEGORY_NAME.getProperty()));
45         }
46
47         public String getCategoryName() {
48                 return categoryName;
49         }
50
51         public void setCategoryName(String categoryName) {
52                 this.categoryName = categoryName;
53         }
54
55         @Override
56         protected void createUniqueId() {
57                 setUniqueId(getLabel() + "." + this.categoryName + "." + getName());
58         }
59
60         @Override
61         public String toString() {
62                 return "ResourceCategoryData [categoryName=" + categoryName + "]" + super.toString();
63         }
64
65         @Override
66         public Map<String, Object> toGraphMap() {
67                 Map<String, Object> graphMap = super.toGraphMap();
68                 addIfExists(graphMap, GraphPropertiesDictionary.CATEGORY_NAME, categoryName);
69                 return graphMap;
70         }
71
72 }