Added review comment
[appc.git] / appc-outbound / appc-network-inventory-client / provider / src / main / java / org / openecomp / appc / instar / interfaceImpl / InstarRestClientImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
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  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.instar.interfaceImpl;
26
27 import java.io.IOException;
28 import java.nio.charset.Charset;
29 import java.util.HashMap;
30
31 import org.apache.commons.io.IOUtils;
32 import org.openecomp.appc.instar.dme2client.Dme2Client;
33 import org.openecomp.appc.instar.interfaces.RestClientInterface;
34 import org.openecomp.appc.instar.utils.InstarClientConstant;
35
36 import com.att.eelf.configuration.EELFLogger;
37 import com.att.eelf.configuration.EELFManager;
38
39 public class InstarRestClientImpl implements RestClientInterface {
40         
41         private static final EELFLogger log = EELFManager.getInstance().getLogger(InstarRestClientImpl.class);
42         HashMap<String, String> requestData  = null;
43         Dme2Client dme2Client;
44
45         public InstarRestClientImpl(HashMap<String, String> instarRequestData) {
46                 
47                 this.requestData = instarRequestData;
48         }
49
50         @Override
51         public String sendRequest(String operation) throws Exception {
52                 
53                 String instarResponse = null;
54                 try {
55                         if(operation !=null && operation.equalsIgnoreCase(InstarClientConstant.OPERATION_GET_IPADDRESS_BY_VNF_NAME)){
56                           dme2Client = new Dme2Client(operation, InstarClientConstant.VNF_NAME, requestData);
57                         }
58                          instarResponse = dme2Client.send();
59                         log.info("Resposne in InstarRestClientImpl = " + instarResponse);
60                         if(instarResponse == null || instarResponse.length() < 0)
61                                 throw new Exception ("No Data received from Instar for this call " + operation);
62                 } catch (Exception e) {
63                         e.printStackTrace();
64                         throw e;
65                 }               
66                 return instarResponse;
67         }
68
69
70
71 }