efc4dff79927c77190569513ca73dd19518d9733
[vfc/nfvo/wfengine.git] / activiti-extension / src / main / java / org / onap / workflow / activitiext / common / EnumModuleUrl.java
1 /**
2  * Copyright 2017 [ZTE] and others.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.workflow.activitiext.common;
17
18 import org.apache.commons.lang3.StringUtils;
19 import org.onap.workflow.activitiext.restservicetask.PropertyUtil;
20 import org.onap.workflow.utils.MsbUtils;
21 import org.slf4j.Logger;
22 import org.slf4j.LoggerFactory;
23
24 /**
25  *
26  */
27 public class EnumModuleUrl {
28
29   private static final Logger logger = LoggerFactory.getLogger(EnumModuleUrl.class);
30
31   public static String getApiRootDomain() {
32     return "/openoapi/catalog/v1";
33   }
34
35   public static String getBaseUrl(ServiceType type) {
36         String baseUrl = "";
37         String publishUrl ="";
38     try {
39         publishUrl = MsbUtils.getServiceAddress("catalog", "v1");
40         } catch (Exception e) {
41                 // TODO Auto-generated catch block
42                 e.printStackTrace();
43         }
44     
45     if(StringUtils.isNotEmpty(publishUrl))
46     {
47         baseUrl = publishUrl;
48     }else{
49         
50         baseUrl = PropertyUtil.getBasePath() + getApiRootDomain();
51     }
52     logger.info("baseUrl  is" + baseUrl);
53
54     return baseUrl;
55   }
56 }