6178fe3f60c7e5dde583412f898bf61933858f9e
[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 import java.util.function.Supplier;
28
29 public final class ValidationConfigManager {
30
31     private static final String REPORT_OUTPUT_FILE_NAME = "/reportOutput.txt";
32     private static final String CSV_FILE_PREFIX = "/csvSummary_";
33     private static final String CSV_EXT = ".csv";
34     public static final String DEFAULT_CSV_PATH = "summary.csv";
35
36     private ValidationConfigManager() {
37     }
38
39     public static String txtReportFilePath(String outputPath) {
40         return outputPath + REPORT_OUTPUT_FILE_NAME;
41     }
42
43     public static String csvReportFilePath(String outputPath, Supplier<Long> getTime) {
44         return outputPath + CSV_FILE_PREFIX + getTime.get() + CSV_EXT;
45     }
46 }