summaryrefslogtreecommitdiffstats
path: root/vespa-feed-client/src/main/java/com/yahoo/vespa/feed/client/HttpFeedClient.java
blob: 6cf56ac9cddf6071fd903619d52b4f720427aa73 (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 Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.feed.client;

import java.util.concurrent.Future;

/**
 * @author bjorncs
 */
class HttpFeedClient implements FeedClient {

    HttpFeedClient(FeedClientBuilder builder) {

    }

    @Override
    public Future<Result> put(String documentId, String documentJson, OperationParameters params, ResultCallback callback) {
        return null;
    }

    @Override
    public Future<Result> remove(String documentId, OperationParameters params, ResultCallback callback) {
        return null;
    }

    @Override
    public Future<Result> update(String documentId, String documentJson, OperationParameters params, ResultCallback callback) {
        return null;
    }
}