Updating aai adapter to v19 model
[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  * @author Rich Tabedzki
24  *
25  */
26 package org.onap.ccsdk.sli.adaptors.aai;
27
28 import java.io.UnsupportedEncodingException;
29 import java.net.MalformedURLException;
30 import java.net.URL;
31
32 import org.onap.ccsdk.sli.adaptors.aai.data.AAIDatum;
33 import org.onap.ccsdk.sli.adaptors.aai.data.EchoResponse;
34
35 import com.fasterxml.jackson.core.JsonProcessingException;
36 import com.fasterxml.jackson.databind.ObjectMapper;
37
38 public class EchoRequest extends AAIRequest {
39
40
41
42         private final String echoPath;
43
44         public EchoRequest() {
45                 echoPath = "/aai/util/echo";
46         }
47
48
49         @Override
50         public URL getRequestUrl(String method, String resourceVersion) throws UnsupportedEncodingException, MalformedURLException {
51
52                 String requestUrl = targetUri+echoPath;
53
54                 if(resourceVersion != null) {
55                         requestUrl = requestUrl +"?resource-version="+resourceVersion;
56                 }
57                 URL httpReqUrl =        new URL(requestUrl);
58
59                 aaiService.LOGwriteFirstTrace(method, httpReqUrl.toString());
60
61                 return httpReqUrl;
62         }
63
64         @Override
65         public URL getRequestQueryUrl(String method) throws UnsupportedEncodingException, MalformedURLException {
66                 return getRequestUrl(method, null);
67         }
68
69
70         @Override
71         public String toJSONString() {
72                 ObjectMapper mapper = getObjectMapper();
73                 EchoResponse tenant = (EchoResponse)requestDatum;
74                 String jsonText = null;
75                 try {
76                         jsonText = mapper.writeValueAsString(tenant);
77                 } catch (JsonProcessingException exc) {
78                         handleException(this, exc);
79                         return null;
80                 }
81                 return jsonText;
82         }
83
84
85         @Override
86         public String[] getArgsList() {
87                 String[] args = {};
88                 return args;
89         }
90
91
92         @Override
93         public Class<? extends AAIDatum> getModelClass() {
94                 return EchoResponse.class;
95         }
96
97 }