Added oparent to sdc main
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / impl / validator / config / ValidationConfigManager.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.asdctool.impl.validator.config;
22
23 import java.io.FileInputStream;
24 import java.io.IOException;
25 import java.io.InputStream;
26 import java.util.Properties;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 /**
31  * Created by chaya on 7/4/2017.
32  */
33 public class ValidationConfigManager {
34
35     private static Logger log = LoggerFactory.getLogger(ValidationConfigManager.class);
36
37     private static Properties prop = new Properties();
38     private static String outputFullFilePath;
39     private static String outputFilePath;
40
41     public static String getOutputFullFilePath() {
42         return outputFullFilePath;
43     }
44     public static String getOutputFilePath() {
45         return outputFilePath;
46     }
47
48     public static void setOutputFullFilePath(String outputPath) {
49         ValidationConfigManager.outputFilePath = outputPath;
50         ValidationConfigManager.outputFullFilePath = outputPath+ "/reportOutput.txt";
51     }
52
53     
54
55     public static String getCsvReportFilePath() {
56         return csvReportFilePath;
57     }
58
59     public static void setCsvReportFilePath(String outputPath) {
60         ValidationConfigManager.csvReportFilePath = outputPath +"/csvSummary_"+System.currentTimeMillis()+".csv";
61     }
62
63     private static String csvReportFilePath = "summary.csv";
64
65     public static Properties setValidationConfiguration(String path){
66         InputStream input = null;
67         try {
68             input = new FileInputStream(path);
69             prop.load(input);
70         } catch (IOException ex) {
71             log.info("FileInputStream failed - " , ex);
72         }
73         return prop;
74     }
75
76     public static Properties getValidationConfiguration() {
77         return prop;
78     }
79 }