aboutsummaryrefslogtreecommitdiffstats
path: root/fileacquirer/src/main/java/com/yahoo/filedistribution/fileacquirer/FileAcquirerFactory.java
blob: e26ff838cb0fa9b10502e10104bbc2b8fb688833 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2016 Yahoo Inc. 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);
    }
}