8cd7a44e095b18c9006760ccb73815f40e8e2f1f
[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  * @author Rich Tabedzki
23  *
24  */
25 package org.onap.ccsdk.sli.adaptors.aai;
26
27 import java.io.UnsupportedEncodingException;
28 import java.net.MalformedURLException;
29 import java.net.URISyntaxException;
30 import java.net.URL;
31 import java.util.List;
32
33 import org.apache.http.NameValuePair;
34 import org.apache.http.client.utils.URIBuilder;
35 import org.apache.http.message.BasicNameValuePair;
36 import org.onap.aai.inventory.v14.RelationshipList;
37
38 public class RelationshipListRequest extends GenericRequest {
39
40     public static final String SELFLINK = "selflink";
41
42     public RelationshipListRequest(AAIRequest masterRequest) {
43         super(RelationshipList.class);
44         this.addMasterRequest(masterRequest);
45     }
46
47
48     @Override
49     public URL getRequestUrl(String method, String resourceVersion) throws UnsupportedEncodingException, MalformedURLException, URISyntaxException {
50
51         URL url = super.getRequestUrl(method, null);
52         URIBuilder builder = new URIBuilder(url.toURI());
53         String newPath = builder.getPath() + "/relationship-list";
54         builder.setPath(newPath);
55         if(resourceVersion != null) {
56             List<NameValuePair> queryList = builder.getQueryParams();
57             NameValuePair nvp = new BasicNameValuePair("resourceVersion", resourceVersion);
58             queryList.add(nvp);
59         }
60
61         aaiService.LOGwriteFirstTrace(method, builder.toString());
62
63         return builder.build().toURL();
64     }
65 }