Update the dependencies to use project version
[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
39   /**
40    * @return the inputs
41    */
42   public List<String> getInputs() {
43     return inputs;
44   }
45
46   /**
47    * @param inputs the inputs to set
48    */
49   public void setInputs(List<String> inputs) {
50     this.inputs = inputs;
51   }
52
53   /**
54    * @return the mapper
55    */
56   public ObjectMapper getMapper() {
57     return mapper;
58   }
59
60   /**
61    * @param mapper the mapper to set
62    */
63   public void setMapper(ObjectMapper mapper) {
64     this.mapper = mapper;
65   }
66
67   /**
68    * @return the outputString
69    */
70   public String getOutputString() {
71     return outputString;
72   }
73
74   private final String outputString = "VNFs";
75   protected ObjectMapper mapper = new ObjectMapper();
76
77   public AggregationSuggestionEntity() {
78     super();
79     inputs.add("VNFs");
80     inputs.add("generic-vnfs");
81   }
82
83   @Override
84   public void deriveFields() {
85     this.id = NodeUtils.generateUniqueShaDigest(this.outputString);
86   }
87
88   @Override
89   public String getIndexDocumentJson() {
90
91     JSONArray inputArray = new JSONArray();
92     for (String input : inputs) {
93       input = input.replace(",", "");
94       input = input.replace("[", "");
95       input = input.replace("]", "");
96       inputArray.put(input);
97     }
98
99     JSONObject entitySuggest = new JSONObject();
100     entitySuggest.put("input", inputArray);
101     entitySuggest.put("output", this.outputString);
102     entitySuggest.put("weight", 100);
103
104     JSONObject payloadNode = new JSONObject();
105     entitySuggest.put("payload", payloadNode);
106
107     JSONObject rootNode = new JSONObject();
108     rootNode.put("entity_suggest", entitySuggest);
109
110     return rootNode.toString();
111   }
112
113   @Override
114   public ObjectNode getBulkImportEntity() {
115     // TODO Auto-generated method stub
116     return null;
117   }
118
119 }