Merge "Fix Blocker/Critical sonar issues"
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / synchronizer / entity / AggregationSuggestionEntity.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 com.fasterxml.jackson.databind.ObjectMapper;
26 import com.fasterxml.jackson.databind.node.ObjectNode;
27
28 import java.util.ArrayList;
29 import java.util.List;
30
31 import org.json.JSONArray;
32 import org.json.JSONObject;
33 import org.onap.aai.sparky.util.NodeUtils;
34
35 public class AggregationSuggestionEntity extends IndexableEntity implements IndexDocument {
36
37   private List<String> inputs = new ArrayList<String>();
38   private final String outputString = "VNFs";
39   protected ObjectMapper mapper = new ObjectMapper();
40   
41   public AggregationSuggestionEntity() {
42     super();
43     inputs.add("VNFs");
44     inputs.add("generic-vnfs");
45   }
46   
47   @Override
48   public void deriveFields() {
49     this.id = NodeUtils.generateUniqueShaDigest(this.outputString);
50   }
51
52   @Override
53   public String getIndexDocumentJson() {
54     
55     JSONArray inputArray = new JSONArray();
56     for (String input: inputs) {
57       input = input.replace(",","" );
58       input = input.replace("[","" );
59       input = input.replace("]","" );
60       inputArray.put(input);
61     }
62     
63     JSONObject entitySuggest = new JSONObject();
64     entitySuggest.put("input", inputArray);
65     entitySuggest.put("output", this.outputString);
66     entitySuggest.put("weight", 100);
67     
68     JSONObject payloadNode = new JSONObject();
69     entitySuggest.put("payload", payloadNode);
70     
71     JSONObject rootNode = new JSONObject();
72     rootNode.put("entity_suggest", entitySuggest);
73
74     return rootNode.toString();
75   }
76
77   @Override
78   public ObjectNode getBulkImportEntity() {
79     // TODO Auto-generated method stub
80     return null;
81   }
82
83 }