Updating aai adapter to v14 model
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / ccsdk / sli / adaptors / aai / RelationshipListRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                         reserved.
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
22 package org.onap.ccsdk.sli.adaptors.aai;
23
24 import java.io.UnsupportedEncodingException;
25 import java.net.MalformedURLException;
26 import java.net.URISyntaxException;
27 import java.net.URL;
28 import java.util.List;
29
30 import org.apache.http.NameValuePair;
31 import org.apache.http.client.utils.URIBuilder;
32 import org.apache.http.message.BasicNameValuePair;
33 import org.onap.aai.inventory.v14.RelationshipList;
34
35 public class RelationshipListRequest extends GenericRequest {
36
37     public static final String SELFLINK = "selflink";
38
39     public RelationshipListRequest(AAIRequest masterRequest) {
40         super(RelationshipList.class);
41         this.addMasterRequest(masterRequest);
42     }
43
44
45     @Override
46     public URL getRequestUrl(String method, String resourceVersion) throws UnsupportedEncodingException, MalformedURLException, URISyntaxException {
47
48         URL url = super.getRequestUrl(method, null);
49         URIBuilder builder = new URIBuilder(url.toURI());
50         String newPath = builder.getPath() + "/relationship-list";
51         builder.setPath(newPath);
52         if(resourceVersion != null) {
53             List<NameValuePair> queryList = builder.getQueryParams();
54             NameValuePair nvp = new BasicNameValuePair("resourceVersion", resourceVersion);
55             queryList.add(nvp);
56         }
57
58         aaiService.LOGwriteFirstTrace(method, builder.toString());
59
60         return builder.build().toURL();
61     }
62 }