aboutsummaryrefslogtreecommitdiffstats
path: root/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/filedistribution/S3Downloader.java
blob: 76a6c29a56a8204ecada97e623a46aaebc3561c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yahoo.vespa.config.proxy.filedistribution;

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

public class S3Downloader {

    // TODO: Avoid hardcoding
    private static final String ZTS_URL = "https://zts.athenz.ouroath.com:4443/zts/v1";

    Optional<File> downloadFile(String fileName, File targetDir) throws IOException {
        throw new UnsupportedOperationException("Download of S3 urls not implemented");
    }

}