summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileReferencesRepository.java
blob: b2c0538e77bffc4d984ab333e9d21fad791c0077 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.filedistribution;

import com.yahoo.config.FileReference;

import java.util.LinkedHashSet;
import java.util.Set;

/**
 * Keeps track of what files to send with file distribution
 *
 * @author Tony Vaagenes
 * @author hmusum
 */
public class FileReferencesRepository {

    /** A set of file references that should be distributed */
    private final Set<FileReference> fileReferences = new LinkedHashSet<>();

    public FileReferencesRepository() { }

    public void add(FileReference reference) { fileReferences.add(reference); }

    public Set<FileReference> allFileReferences() { return Set.copyOf(fileReferences); }

}