Adding interfaces in documentation
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / sync / task / StoreDocumentTask.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 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 package org.onap.aai.sparky.sync.task;
22
23 import java.util.Map;
24 import java.util.function.Supplier;
25
26 import javax.ws.rs.core.MediaType;
27
28 import org.onap.aai.restclient.client.OperationResult;
29 import org.onap.aai.sparky.dal.ElasticSearchAdapter;
30 import org.onap.aai.sparky.dal.NetworkTransaction;
31 import org.onap.aai.sparky.sync.entity.IndexDocument;
32 import org.slf4j.MDC;
33
34 /**
35  * The Class StoreDocumentTask.
36  */
37 public class StoreDocumentTask implements Supplier<NetworkTransaction> {
38
39   private IndexDocument doc;
40
41   private NetworkTransaction txn;
42
43   private ElasticSearchAdapter esAdapter;
44   private Map<String, String> contextMap;
45
46   /**
47    * Instantiates a new store document task.
48    *
49    * @param doc the doc
50    * @param txn the txn
51    * @param esDataProvider the es data provider
52    */
53   public StoreDocumentTask(IndexDocument doc, NetworkTransaction txn,
54       ElasticSearchAdapter esAdapter) {
55     this.doc = doc;
56     this.txn = txn;
57     this.esAdapter = esAdapter;
58     this.contextMap = MDC.getCopyOfContextMap();
59   }
60
61   /* (non-Javadoc)
62    * @see java.util.function.Supplier#get()
63    */
64   @Override
65   public NetworkTransaction get() {
66     txn.setTaskAgeInMs();
67
68     long startTimeInMs = System.currentTimeMillis();
69     MDC.setContextMap(contextMap);
70     OperationResult operationResult = null;
71
72     try {
73
74       operationResult =
75           esAdapter.doPut(txn.getLink(), doc.getAsJson(), MediaType.APPLICATION_JSON_TYPE);
76       txn.setOpTimeInMs(System.currentTimeMillis() - startTimeInMs);
77     } catch (Exception exception) {
78       operationResult.setResult(500, exception.getMessage());
79     }
80
81     txn.setOperationResult(operationResult);
82
83     return txn;
84   }
85
86 }