Merge "Fix Blocker/Critical sonar issues"
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / synchronizer / entity / AggregationEntity.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.sparky.synchronizer.entity;
24
25 import java.util.HashMap;
26 import java.util.Map;
27
28 import org.onap.aai.sparky.config.oxm.OxmModelLoader;
29 import org.onap.aai.sparky.util.NodeUtils;
30
31 import com.fasterxml.jackson.databind.ObjectMapper;
32 import com.fasterxml.jackson.databind.node.ObjectNode;
33
34 /**
35  * The Class AggregationEntity.
36  */
37 public class AggregationEntity extends IndexableEntity implements IndexDocument {
38   private Map<String, String> attributes = new HashMap<String, String>();
39   protected ObjectMapper mapper = new ObjectMapper();
40   
41   /**
42    * Instantiates a new aggregation entity.
43    */
44   public AggregationEntity() {
45     super();
46   }
47
48   /**
49    * Instantiates a new aggregation entity.
50    *
51    * @param loader the loader
52    */
53   public AggregationEntity(OxmModelLoader loader) {
54     super(loader);
55   }
56
57   /* (non-Javadoc)
58    * @see org.onap.aai.sparky.synchronizer.entity.IndexDocument#deriveFields()
59    */
60   @Override
61   public void deriveFields() {
62
63     /*
64      * We'll try and create a unique identity key that we can use for differencing the previously
65      * imported record sets as we won't have granular control of what is created/removed and when.
66      * The best we can hope for is identification of resources by generated Id until the
67      * Identity-Service UUID is tagged against all resources, then we can use that instead.
68      */
69     this.id =
70         NodeUtils.generateUniqueShaDigest(link);
71   }
72
73   public void copyAttributeKeyValuePair(Map<String, Object> map){
74     for(String key: map.keySet()){
75       if (!key.equalsIgnoreCase("relationship-list")){   // ignore relationship data which is not required in aggregation
76         this.attributes.put(key, map.get(key).toString());    // not sure if entity attribute can contain an object as value
77       }
78     }
79   }
80   
81   public void addAttributeKeyValuePair(String key, String value){
82     this.attributes.put(key, value);
83   }
84
85   @Override
86   public String getIndexDocumentJson() {
87     ObjectNode rootNode = mapper.createObjectNode();
88     rootNode.put("link", this.getLink());
89     rootNode.put("lastmodTimestamp", this.getEntityTimeStamp());
90     for (String key: this.attributes.keySet()){
91       rootNode.put(key, this.attributes.get(key));
92     }
93     return rootNode.toString();
94   }
95
96   @Override
97   public ObjectNode getBulkImportEntity() {
98     // TODO Auto-generated method stub
99     return null;
100   }
101
102   /* (non-Javadoc)
103    * @see java.lang.Object#toString()
104    */
105   @Override
106   public String toString() {
107     return "IndexDocument [" + (entityType != null ? "entityType=" + entityType + ", " : "")
108         + (entityPrimaryKeyValue != null ? "entityPrimaryKeyValue=" + entityPrimaryKeyValue + ", "
109             : "")
110         + (mapper != null ? "mapper=" + mapper + ", " : "") + (id != null ? "id=" + id + ", " : "")
111         + (lastmodTimestamp != null ? "lastmodTimestamp=" + lastmodTimestamp + ", " : "") + "]";
112   }
113 }