Code Improvements-Vnfsdk-refrepo sonar issue fixes
[vnfsdk/refrepo.git] / vnfmarket-be / vnf-sdk-marketplace / src / main / java / org / onap / vnfsdk / marketplace / filemanage / FileManagerFactory.java
1 /**
2  * Copyright 2017 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 package org.onap.vnfsdk.marketplace.filemanage;
17
18 import org.onap.vnfsdk.marketplace.filemanage.http.HttpFileManagerImpl;
19 import org.slf4j.Logger;
20 import org.slf4j.LoggerFactory;
21
22 public class FileManagerFactory {
23
24   private static final Logger logger = LoggerFactory.getLogger(FileManagerFactory.class);
25
26   private FileManagerFactory() {
27   }
28
29   private static FileManager getHttpFileManager() {
30     return new HttpFileManagerImpl();
31   }
32
33   /**
34    * create file manager.
35    * @return FileManager
36    */
37   public static FileManager createFileManager() {
38     switch (getType()) {
39       case HTTP:
40         return getHttpFileManager();
41       case FTP:
42         return null;
43       default:
44         return getHttpFileManager();
45     }
46   }
47
48   private static FileManagerType getType() {
49     String type = System.getenv("useFtp");
50     logger.info("read environment varibale uesFtp:{}" , type);
51     if ((type != null) && "true".equals(type)) {
52       return FileManagerType.FTP;
53     } else {
54       return FileManagerType.HTTP;
55     }
56   }
57 }
58