Isolate deprecated code in CCSDK aai-service
[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  * ================================================================================
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.URI;
27 import java.net.URISyntaxException;
28 import java.net.URL;
29 import java.util.List;
30
31 import org.apache.http.NameValuePair;
32 import org.apache.http.client.utils.URIBuilder;
33 import org.apache.http.message.BasicNameValuePair;
34 import org.onap.ccsdk.sli.adaptors.aai.data.AAIDatum;
35 import org.openecomp.aai.inventory.v11.Relationship;
36
37 import com.fasterxml.jackson.core.JsonProcessingException;
38 import com.fasterxml.jackson.databind.ObjectMapper;
39 import com.google.common.base.Joiner;
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 }