ea0bbf33a96274a1038536e36093e223c67513bb
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (c) 2019 Samsung
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  *
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.sdc.asdctool.impl.validator.config;
26
27 public class ValidationConfigManager {
28
29     private static String outputFullFilePath;
30     private static String outputFilePath;
31
32     private ValidationConfigManager() {
33     }
34
35     public static String getOutputFullFilePath() {
36         return outputFullFilePath;
37     }
38
39     public static String getOutputFilePath() {
40         return outputFilePath;
41     }
42
43     public static void setOutputFullFilePath(String outputPath) {
44         ValidationConfigManager.outputFilePath = outputPath;
45         ValidationConfigManager.outputFullFilePath = outputPath + "/reportOutput.txt";
46     }
47
48     public static String getCsvReportFilePath() {
49         return csvReportFilePath;
50     }
51
52     public static void setCsvReportFilePath(String outputPath) {
53         ValidationConfigManager.csvReportFilePath =
54             outputPath + "/csvSummary_" + System.currentTimeMillis() + ".csv";
55     }
56
57     private static String csvReportFilePath = "summary.csv";
58 }