summaryrefslogtreecommitdiffstats
path: root/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/filedistribution/FileReferenceDownload.java
blob: ce5a30dc7adf4dad38e9c97a4f5b85c3e7dfef73 (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
27
28
//  Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.vespa.config.proxy.filedistribution;

import com.google.common.util.concurrent.SettableFuture;
import com.yahoo.config.FileReference;

import java.io.File;
import java.util.Optional;

public class FileReferenceDownload {
    private final FileReference fileReference;
    private final SettableFuture<Optional<File>> future;

    FileReferenceDownload(FileReference fileReference, SettableFuture<Optional<File>> future) {
        this.fileReference = fileReference;
        this.future = future;
    }

    FileReference fileReference() {
        return fileReference;
    }

    SettableFuture<Optional<File>> future() {
        return future;
    }

}