b74d1031bcdae8f5e512aeca67d7799f34a8eb12
[nonrtric.git] / sdnc-a1-controller / northbound / nonrt-ric-api / provider / src / main / java / org / onap / sdnc / northbound / restadapter / NearRicUrlProvider.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.sdnc.northbound.restadapter;
22
23 import org.springframework.web.util.UriComponentsBuilder;
24
25 /**
26  * This class provides Near-RIC api to invoke the A1 interface
27  *
28  * @author lathishbabu.ganesan@est.tech
29  *
30  */
31
32 public class NearRicUrlProvider {
33
34   /**
35    * Retrieve the base url of the Near-RIC
36    *
37    * @param nearRtRicUrl the near-rt-ric url
38    * @return the base url
39    */
40   public String getBaseUrl(final String nearRtRicUrl) {
41     String baseUrl = nearRtRicUrl + "/A1-P/v1";
42     return UriComponentsBuilder.fromUriString(baseUrl).build().toString();
43   }
44
45   /**
46    * Retrieve the policytypes url
47    *
48    * @param nearRtRicUrl the near-rt-ric url
49    * @return the policytypes url
50    */
51   public String policyTypesUrl(final String nearRtRicUrl) {
52     return UriComponentsBuilder.fromUriString(getBaseUrl(nearRtRicUrl)).pathSegment("policytypes")
53             .build().toString();
54   }
55
56   /**
57    * Retrieve the policies url
58    *
59    * @param nearRtRicUrl the near-rt-ric url
60    * @return the policies url
61    */
62   public String policiesUrl(final String nearRtRicUrl) {
63     return UriComponentsBuilder.fromUriString(getBaseUrl(nearRtRicUrl)).pathSegment("policies")
64             .build().toString();
65   }
66
67   /**
68    * Retrieve the url of policy type
69    *
70    * @param nearRtRicUrl the near-rt-ric url
71    * @param policyTypeId Policy Type Id
72    * @return the policy type url
73    */
74   public String getPolicyTypeUrl(final String nearRtRicUrl, final String policyTypeId) {
75     return UriComponentsBuilder.fromUriString(policyTypesUrl(nearRtRicUrl)).pathSegment(policyTypeId)
76         .build().toString();
77   }
78
79   /**
80    * Retrieve the url of putPolicy
81    *
82    * @param nearRtRicUrl the near-rt-ric url
83    * @param policyId Policy Id
84    * @param policyTypeId Policy Type Id
85    * @return the putPolicy url
86    */
87   public String putPolicyUrl(final String nearRtRicUrl, final String policyId, final String policyTypeId) {
88     return UriComponentsBuilder.fromUriString(policiesUrl(nearRtRicUrl))
89             .pathSegment(policyId + "?policyTypeId=" + policyTypeId).build().toString();
90   }
91
92   /**
93    * Retrieve the url of deletePolicy
94    *
95    * @param nearRtRicUrl the near-rt-ric url
96    * @param policyId Policy Id
97    * @return the deletePolicy url
98    */
99   public String deletePolicyUrl(final String nearRtRicUrl, final String policyId) {
100     return UriComponentsBuilder.fromUriString(policiesUrl(nearRtRicUrl)).pathSegment(policyId)
101             .build().toString();
102   }
103 }