Adding NS instantiation
[so.git] / so-etsi-nfvo / so-etsi-nfvo-ns-lcm / so-etsi-nfvo-ns-lcm-service / src / main / java / org / onap / so / etsi / nfvo / ns / lcm / EtsiSoNsLcmManagerUrlProvider.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 package org.onap.so.etsi.nfvo.ns.lcm;
21
22 import java.net.URI;
23 import org.springframework.beans.factory.annotation.Autowired;
24 import org.springframework.beans.factory.annotation.Value;
25 import org.springframework.context.annotation.Configuration;
26
27
28 /**
29  * @author Waqas Ikram (waqas.ikram@est.tech)
30  *
31  */
32 @Configuration
33 public class EtsiSoNsLcmManagerUrlProvider {
34
35     private final String etsiNsLcmManagerEndpoint;
36
37     @Autowired
38     public EtsiSoNsLcmManagerUrlProvider(
39             @Value("${so-etsi-nfvo-ns-lcm.endpoint:http://so-etsi-nfvo-ns-lcm.onap:9095}") final String etsiNsLcmManagerEndpoint) {
40         this.etsiNsLcmManagerEndpoint = etsiNsLcmManagerEndpoint;
41     }
42
43     public URI getCreatedNsResourceUri(final String nsInstanceId) {
44         return URI.create(etsiNsLcmManagerEndpoint + Constants.NS_LIFE_CYCLE_MANAGEMENT_BASE_URL + "/ns_instances/"
45                 + nsInstanceId);
46     }
47
48     public URI getInstantiatedOccUri(final String nsLcmOpOccId) {
49         return URI.create(etsiNsLcmManagerEndpoint + Constants.NS_LIFE_CYCLE_MANAGEMENT_BASE_URL + "/ns_lcm_op_occs/"
50                 + nsLcmOpOccId);
51     }
52
53 }