7c0c19492030487769dbbc024d41704cc0a28cf0
[vnfsdk/refrepo.git] /
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   private static final Logger logger = LoggerFactory.getLogger(FileManagerFactory.class);
24
25   private static FileManager getHttpFileManager() {
26     return new HttpFileManagerImpl();
27   }
28
29   /**
30    * create file manager.
31    * @return FileManager
32    */
33   public static FileManager createFileManager() {
34     switch (getType()) {
35       case http:
36         return getHttpFileManager();
37       case ftp:
38         return null;
39       default:
40         return getHttpFileManager();
41     }
42   }
43
44   private static FileManagerType getType() {
45     String type = System.getenv("useFtp");
46     logger.info("read environment varibale uesFtp:" + type);
47     if (type != null && "true".equals(type)) {
48       return FileManagerType.ftp;
49     } else {
50       return FileManagerType.http;
51     }
52   }
53 }