Merge "Deploy missing saltstack-adapter zip"
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / ccsdk / sli / adaptors / aai / EchoRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                      reserved.
7  * Modifications Copyright (C) 2018 IBM.
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
23 package org.onap.ccsdk.sli.adaptors.aai;
24
25 import java.io.UnsupportedEncodingException;
26 import java.net.MalformedURLException;
27 import java.net.URL;
28
29 import org.onap.ccsdk.sli.adaptors.aai.data.AAIDatum;
30 import org.onap.ccsdk.sli.adaptors.aai.data.EchoResponse;
31
32 import com.fasterxml.jackson.core.JsonProcessingException;
33 import com.fasterxml.jackson.databind.ObjectMapper;
34
35 public class EchoRequest extends AAIRequest {
36
37
38
39         private final String echoPath;
40
41         public EchoRequest() {
42                 echoPath = "/aai/util/echo";
43         }
44
45
46         @Override
47         public URL getRequestUrl(String method, String resourceVersion) throws UnsupportedEncodingException, MalformedURLException {
48
49                 String requestUrl = targetUri+echoPath;
50
51                 if(resourceVersion != null) {
52                         requestUrl = requestUrl +"?resource-version="+resourceVersion;
53                 }
54                 URL httpReqUrl =        new URL(requestUrl);
55
56                 aaiService.LOGwriteFirstTrace(method, httpReqUrl.toString());
57
58                 return httpReqUrl;
59         }
60
61         @Override
62         public URL getRequestQueryUrl(String method) throws UnsupportedEncodingException, MalformedURLException {
63                 return getRequestUrl(method, null);
64         }
65
66
67         @Override
68         public String toJSONString() {
69                 ObjectMapper mapper = getObjectMapper();
70                 EchoResponse tenant = (EchoResponse)requestDatum;
71                 String jsonText = null;
72                 try {
73                         jsonText = mapper.writeValueAsString(tenant);
74                 } catch (JsonProcessingException exc) {
75                         handleException(this, exc);
76                         return null;
77                 }
78                 return jsonText;
79         }
80
81
82         @Override
83         public String[] getArgsList() {
84                 String[] args = {};
85                 return args;
86         }
87
88
89         @Override
90         public Class<? extends AAIDatum> getModelClass() {
91                 return EchoResponse.class;
92         }
93
94 }