All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.whitesource.utils.files.ResolvedFolder Maven / Gradle / Ivy

/**
 * The project is licensed under the WhiteSource Software End User License Agreement .
 * Copyright (C) 2015 WhiteSource Ltd.
 * Licensed under the WhiteSource Software End User License Agreement;
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * https://s3.amazonaws.com/unified-agent/LICENSE.txt
 */
package org.whitesource.utils.files;

import java.util.Map;
import java.util.Set;

/**
 * @author eugen.horovitz
 */
public class ResolvedFolder {

    /* --- Members --- */

    private final String originalScanFolder;
    private final Map> topFoldersFound;

    /* --- Constructors --- */

    public ResolvedFolder(String originalScanFolder, Map> topFoldersFound) {
        this.originalScanFolder = originalScanFolder;
        this.topFoldersFound = topFoldersFound;
    }

    /* --- Getters --- */

    public String getOriginalScanFolder() {
        return originalScanFolder;
    }

    public Map> getTopFoldersFound() {
        return topFoldersFound;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy