Add serviceOrder rest services
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / ServiceCatalogUrl.java
1 package org.onap.nbi.apis.serviceorder;
2
3
4 import org.springframework.beans.factory.annotation.Value;
5 import org.springframework.stereotype.Service;
6
7 @Service
8 public class ServiceCatalogUrl {
9
10
11     @Value("${nbi.url}")
12     private String nbiUrl;
13
14     public String getServiceCatalogUrl() {
15
16         return new StringBuilder().append(nbiUrl).append("/serviceSpecification/").toString();
17
18     }
19
20
21 }