2 * ============LICENSE_START=======================================================
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
12 * http://www.apache.org/licenses/LICENSE-2.0
15 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
25 package org.openecomp.sdc.asdctool.impl.validator.config;
27 import java.util.function.Supplier;
29 public final class ValidationConfigManager {
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";
36 private ValidationConfigManager() {
39 public static String txtReportFilePath(String outputPath) {
40 return outputPath + REPORT_OUTPUT_FILE_NAME;
43 public static String csvReportFilePath(String outputPath, Supplier<Long> getTime) {
44 return outputPath + CSV_FILE_PREFIX + getTime.get() + CSV_EXT;