aboutsummaryrefslogtreecommitdiffstats
path: root/fileacquirer/src/main/java/com/yahoo/filedistribution/fileacquirer/FileAcquirerFactory.java
blob: 88858d568d54fb4b2f7a7bd1e6f355cf59044e1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2017 Yahoo Holdings. 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 tonytv
 */
public class FileAcquirerFactory {
    public static FileAcquirer create(String configId) {
        return new FileAcquirerImpl(configId);
    }
}