aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/filedistribution/MockFileManager.java
blob: 3dd0cfb03aa2698c6c8dcbfe3032d9809b7b14c5 (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
27
28
29
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.filedistribution;

import com.yahoo.config.FileReference;
import com.yahoo.path.Path;

import java.nio.ByteBuffer;

/**
 * @author hmusum
 */
public class MockFileManager implements AddFileInterface {

    @Override
    public FileReference addUri(String uri, Path path) {
        return null;
    }

    @Override
    public FileReference addFile(Path path) {
        return null;
    }

    @Override
    public FileReference addBlob(ByteBuffer blob, Path path) {
        return null;
    }

}