Update gvnfm-driver .gitreview file
[vfc/nfvo/driver/vnfm/gvnfm.git] / juju / juju-vnfmadapter / Juju-vnfmadapterService / service / src / main / java / org / openo / nfvo / jujuvnfmadapter / service / juju / JujuHelper.java
1 /*
2  * Copyright (c) 2016, Huawei Technologies Co., Ltd.
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
17 package org.openo.nfvo.jujuvnfmadapter.service.juju;
18
19 import org.apache.commons.lang3.StringUtils;
20
21 /**
22  * <br/>
23  * <p>
24  * </p>
25  * 
26  * @author              quanzhong@huawei.com
27  * @version     NFVO 0.5  Nov 4, 2016
28  */
29 public class JujuHelper {
30
31     /**
32      * 1\ toLowerCase
33      * 2\remove the extension
34      * 3\remove the underline
35      * <br/>
36      * 
37      * @param appName
38      * @return
39      * @since  NFVO 0.5
40      */
41      public static String getModelName(String appName){
42          if(StringUtils.isBlank(appName)){
43              return appName;
44          }
45         char c = '.';
46         String modelName = appName;
47         modelName = modelName.toLowerCase();
48         if(modelName.indexOf(c) > -1){
49             modelName = modelName.substring(0,modelName.indexOf(c)); 
50         }
51         return modelName.replaceAll("_", "");
52          
53     }
54 }