Update the dependencies to use project version
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / synchronizer / task / StoreDocumentTask.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.task;
24
25 import java.util.Map;
26 import java.util.function.Supplier;
27
28 import org.onap.aai.sparky.dal.NetworkTransaction;
29 import org.onap.aai.sparky.dal.rest.OperationResult;
30 import org.onap.aai.sparky.dal.rest.RestDataProvider;
31 import org.onap.aai.sparky.synchronizer.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   /**
42    * @return the doc
43    */
44   public IndexDocument getDoc() {
45     return doc;
46   }
47
48   /**
49    * @param doc the doc to set
50    */
51   public void setDoc(IndexDocument doc) {
52     this.doc = doc;
53   }
54
55   /**
56    * @return the txn
57    */
58   public NetworkTransaction getTxn() {
59     return txn;
60   }
61
62   /**
63    * @param txn the txn to set
64    */
65   public void setTxn(NetworkTransaction txn) {
66     this.txn = txn;
67   }
68
69   /**
70    * @return the esDataProvider
71    */
72   public RestDataProvider getEsDataProvider() {
73     return esDataProvider;
74   }
75
76   /**
77    * @param esDataProvider the esDataProvider to set
78    */
79   public void setEsDataProvider(RestDataProvider esDataProvider) {
80     this.esDataProvider = esDataProvider;
81   }
82
83   /**
84    * @return the contextMap
85    */
86   public Map<String, String> getContextMap() {
87     return contextMap;
88   }
89
90   /**
91    * @param contextMap the contextMap to set
92    */
93   public void setContextMap(Map<String, String> contextMap) {
94     this.contextMap = contextMap;
95   }
96
97   private NetworkTransaction txn;
98
99   private RestDataProvider esDataProvider;
100   private Map<String, String> contextMap;
101
102   /**
103    * Instantiates a new store document task.
104    *
105    * @param doc the doc
106    * @param txn the txn
107    * @param esDataProvider the es data provider
108    */
109   public StoreDocumentTask(IndexDocument doc, NetworkTransaction txn,
110       RestDataProvider esDataProvider) {
111     this.doc = doc;
112     this.txn = txn;
113     this.esDataProvider = esDataProvider;
114     this.contextMap = MDC.getCopyOfContextMap();
115   }
116
117   /*
118    * (non-Javadoc)
119    * 
120    * @see java.util.function.Supplier#get()
121    */
122   @Override
123   public NetworkTransaction get() {
124     txn.setTaskAgeInMs();
125
126     long startTimeInMs = System.currentTimeMillis();
127     MDC.setContextMap(contextMap);
128     OperationResult or =
129         esDataProvider.doPut(txn.getLink(), doc.getIndexDocumentJson(), "application/json");
130     or.setResponseTimeInMs(System.currentTimeMillis() - startTimeInMs);
131
132     txn.setOperationResult(or);
133
134     return txn;
135   }
136
137 }