Initial commit for AAI-UI(sparky-backend)
[aai/sparky-be.git] / src / main / java / org / openecomp / sparky / synchronizer / task / PerformElasticSearchRetrieval.java
1 /**
2  * ============LICENSE_START===================================================
3  * SPARKY (AAI UI service)
4  * ============================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=====================================================
21  *
22  * ECOMP and OpenECOMP are trademarks
23  * and service marks of AT&T Intellectual Property.
24  */
25
26 package org.openecomp.sparky.synchronizer.task;
27
28 import java.util.Map;
29 import java.util.function.Supplier;
30
31 import org.openecomp.sparky.dal.NetworkTransaction;
32 import org.openecomp.sparky.dal.rest.OperationResult;
33 import org.openecomp.sparky.dal.rest.RestDataProvider;
34 import org.slf4j.MDC;
35
36 /**
37  * The Class PerformElasticSearchRetrieval.
38  */
39 public class PerformElasticSearchRetrieval implements Supplier<NetworkTransaction> {
40
41   private NetworkTransaction txn;
42   private RestDataProvider restDataProvider;
43   private Map<String, String> contextMap;
44
45   /**
46    * Instantiates a new perform elastic search retrieval.
47    *
48    * @param elasticSearchTxn the elastic search txn
49    * @param restDataProvider the rest data provider
50    */
51   public PerformElasticSearchRetrieval(NetworkTransaction elasticSearchTxn,
52       RestDataProvider restDataProvider) {
53     this.txn = elasticSearchTxn;
54     this.restDataProvider = restDataProvider;
55     this.contextMap = MDC.getCopyOfContextMap();
56   }
57
58   /* (non-Javadoc)
59    * @see java.util.function.Supplier#get()
60    */
61   @Override
62   public NetworkTransaction get() {
63         MDC.setContextMap(contextMap);
64     OperationResult or = restDataProvider.doGet(txn.getLink(), "application/json");
65     txn.setOperationResult(or);
66     return txn;
67   }
68
69 }