replace getApiRootDomain method with static final
[vfc/nfvo/wfengine.git] / activiti-extension / src / main / java / org / onap / workflow / activitiext / common / EnumModuleUrl.java
1 /**
2  * Copyright 2017 ZTE Corporation.
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   private static final String apiRootDomain="/openoapi/catalog/v1";
32
33   public static String getBaseUrl(ServiceType type) {
34         String baseUrl = "";
35         String publishUrl ="";
36     try {
37         publishUrl = MsbUtils.getServiceAddress("catalog", "v1");
38         } catch (Exception e) {
39                 // TODO Auto-generated catch block
40                 e.printStackTrace();
41         }
42     
43     if(StringUtils.isNotEmpty(publishUrl))
44     {
45         baseUrl = publishUrl;
46     }else{
47         
48         baseUrl = PropertyUtil.getBasePath() + apiRootDomain;
49     }
50     logger.info("baseUrl  is" + baseUrl);
51
52     return baseUrl;
53   }
54 }