aboutsummaryrefslogtreecommitdiffstats
path: root/filedistribution/src/main/java/com/yahoo/vespa/filedistribution/FileReferenceDownload.java
blob: 904eaae8c4a078ca05ab5ef717dff3c7bf6d3b6d (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 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.vespa.filedistribution;

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

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

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;
    }
}