aboutsummaryrefslogtreecommitdiffstats
path: root/fileacquirer/src/main/java/com/yahoo/filedistribution/fileacquirer/FileAcquirerFactory.java
blob: 24744728f78732dc40a167d3029419216e2b0264 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.filedistribution.fileacquirer;

/**
 * Hides the real file acquirer type from 3rd party developers.
 * Not intended to be used by 3rd parties.
 *
 * @author Tony Vaagenes
 */
public class FileAcquirerFactory {

    public static FileAcquirer create(String configId) {
        return new FileAcquirerImpl(configId);
    }

}