Updating aai adapter to v16 model
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / ccsdk / sli / adaptors / aai / RelationshipRequest.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.URISyntaxException;
31 import java.net.URL;
32 import java.util.List;
33
34 import org.apache.http.NameValuePair;
35 import org.apache.http.client.utils.URIBuilder;
36 import org.apache.http.message.BasicNameValuePair;
37
38 import org.onap.aai.inventory.v16.Relationship;
39
40
41 public class RelationshipRequest extends GenericRequest {
42
43     public RelationshipRequest(AAIRequest masterRequest) {
44         super(Relationship.class);
45         this.addMasterRequest(masterRequest);
46     }
47
48    
49     @Override
50     public URL getRequestUrl(String method, String resourceVersion) throws UnsupportedEncodingException, MalformedURLException, URISyntaxException {
51        
52
53         URL url = super.getRequestUrl(method, null);
54         URIBuilder builder = new URIBuilder(url.toURI());
55         String newPath = builder.getPath() + "/relationship-list/relationship";
56         builder.setPath(newPath);
57         if(resourceVersion != null) {
58             List<NameValuePair> queryList = builder.getQueryParams();
59             NameValuePair nvp = new BasicNameValuePair("resourceVersion", resourceVersion);
60             queryList.add(nvp);
61         }
62
63         aaiService.LOGwriteFirstTrace(method, builder.toString());
64        
65         return builder.build().toURL();
66     }
67 }