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
 
   9  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  17  * SPDX-License-Identifier: Apache-2.0
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.so.etsi.nfvo.ns.lcm.bpmn.flows.extclients.vnfm;
 
  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;
 
  30  * @author Waqas Ikram (waqas.ikram@est.tech)
 
  34 public class Sol003AdapterUrlProvider {
 
  36     private final URI baseUri;
 
  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();
 
  45      * Get VNFM create and instantiate URL
 
  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
 
  50     public String getCreateInstantiateUrl(final String vnfId) {
 
  51         return UriComponentsBuilder.fromUri(baseUri).pathSegment("vnfs").pathSegment(vnfId).build().toString();
 
  57      * @param jobId The instantiation job identifier
 
  58      * @return job status URL
 
  60     public String getJobStatusUrl(final String jobId) {
 
  61         return UriComponentsBuilder.fromUri(baseUri).pathSegment("jobs").pathSegment(jobId).build().toString();
 
  65      * Get VNFM terminate vnf URL
 
  70     public String getTerminateVnfUrl(final String vnfId) {
 
  71         return UriComponentsBuilder.fromUri(baseUri).pathSegment("vnfs").pathSegment(vnfId).build().toString();