4db95df1c90abd87919b264896fd717fbfca5f90
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / sli / adaptors / aai / PhysicalLinkRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 ONAP 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.URL;
27
28 import org.onap.ccsdk.sli.adaptors.aai.data.AAIDatum;
29 import org.openecomp.aai.inventory.v10.PhysicalLink;
30
31 import com.fasterxml.jackson.core.JsonProcessingException;
32 import com.fasterxml.jackson.databind.ObjectMapper;
33
34 public class PhysicalLinkRequest extends AAIRequest {
35
36         // physical link
37         public static final String PHYSICAL_LINK_PATH           = "org.onap.ccsdk.sli.adaptors.aai.path.physical.link";
38         public static final String PHYSICAL_LINK_QUERY_PATH     = "org.onap.ccsdk.sli.adaptors.aai.path.physical.link.query";
39         
40         private final String physical_link_path;
41         private final String physical_link_query_path;
42         
43         public static final String LINK_NAME                    = "link-name";
44         public static final String PHYSICAL_LINK_NAME   = "physical-link.link-name";
45
46
47         public PhysicalLinkRequest() {
48                 physical_link_path = configProperties.getProperty(PHYSICAL_LINK_PATH);
49                 physical_link_query_path = configProperties.getProperty(PHYSICAL_LINK_QUERY_PATH);
50         }
51
52         @Override
53         public URL getRequestQueryUrl(String method) throws UnsupportedEncodingException, MalformedURLException {
54                 return this.getRequestUrl(method, null);
55         }
56         
57         @Override
58         public URL getRequestUrl(String method, String resourceVersion) throws UnsupportedEncodingException, MalformedURLException {
59
60                 String request_url = target_uri+physical_link_path;
61         
62                 String linkName = null;
63                 if(requestProperties.containsKey(LINK_NAME)) {
64                         linkName = requestProperties.getProperty(LINK_NAME);
65                 }
66
67                 if(requestProperties.containsKey(PHYSICAL_LINK_NAME)) {
68                         linkName = requestProperties.getProperty(PHYSICAL_LINK_NAME);
69                 }
70
71                 
72                 String encoded_vnf = encodeQuery(linkName);
73                 request_url = request_url.replace("{link-name}", encoded_vnf) ;
74
75                 if(resourceVersion != null) {
76                         request_url = request_url +"?resource-version="+resourceVersion;
77                 }
78                 URL http_req_url =      new URL(request_url);
79
80                 aaiService.LOGwriteFirstTrace(method, http_req_url.toString());
81                 aaiService.LOGwriteDateTrace("link-name", linkName);
82                 
83                 return http_req_url;
84         }
85
86
87         @Override
88         public String toJSONString() {
89                 ObjectMapper mapper = getObjectMapper();
90                 PhysicalLink vpe = (PhysicalLink)requestDatum;
91                 String json_text = null;
92                 try {
93                         json_text = mapper.writeValueAsString(vpe);
94                 } catch (JsonProcessingException exc) {
95                         handleException(this, exc);
96                         return null;
97                 }
98                 return json_text;
99         }
100
101         @Override
102         public String[] getArgsList() {
103                 String[] args =  {LINK_NAME, PHYSICAL_LINK_NAME};
104
105                 return args;
106         }
107
108         @Override
109         public Class<? extends AAIDatum> getModelClass() {
110                 return PhysicalLink.class;
111         }
112 }