Merge "Removing so-monitoring module"
[so.git] / so-etsi-nfvo / so-etsi-nfvo-ns-lcm / so-etsi-nfvo-ns-lcm-bpmn-flows / src / main / java / org / onap / so / etsi / nfvo / ns / lcm / bpmn / flows / extclients / vnfm / Sol003AdapterUrlProvider.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.so.etsi.nfvo.ns.lcm.bpmn.flows.extclients.vnfm;
22
23 import java.net.URI;
24 import org.springframework.beans.factory.annotation.Autowired;
25 import org.springframework.beans.factory.annotation.Value;
26 import org.springframework.stereotype.Service;
27 import org.springframework.web.util.UriComponentsBuilder;
28
29 /**
30  * @author Waqas Ikram (waqas.ikram@est.tech)
31  *
32  */
33 @Service
34 public class Sol003AdapterUrlProvider {
35
36     private final URI baseUri;
37
38     @Autowired
39     public Sol003AdapterUrlProvider(
40             @Value("${so.adapters.sol003-adapter.url:https://so-vnfm-adapter.onap:9092/so/vnfm-adapter/v1/}") final String sol003AdapterUrl) {
41         this.baseUri = UriComponentsBuilder.fromHttpUrl(sol003AdapterUrl).build().toUri();
42     }
43
44     /**
45      * Get VNFM create and instantiate URL
46      * 
47      * @param vnfId The identifier of the VNF. This must be the vnf-id of an existing generic-vnf in AAI.
48      * @return VNFM create and instantiate URL
49      */
50     public String getCreateInstantiateUrl(final String vnfId) {
51         return UriComponentsBuilder.fromUri(baseUri).pathSegment("vnfs").pathSegment(vnfId).build().toString();
52     }
53
54     /**
55      * Get job status URL
56      * 
57      * @param jobId The instantiation job identifier
58      * @return job status URL
59      */
60     public String getJobStatusUrl(final String jobId) {
61         return UriComponentsBuilder.fromUri(baseUri).pathSegment("jobs").pathSegment(jobId).build().toString();
62     }
63
64     /**
65      * Get VNFM terminate vnf URL
66      *
67      * @param vnfId
68      * @return
69      */
70     public String getTerminateVnfUrl(final String vnfId) {
71         return UriComponentsBuilder.fromUri(baseUri).pathSegment("vnfs").pathSegment(vnfId).build().toString();
72     }
73
74 }