summaryrefslogtreecommitdiffstats
path: root/vespa-feed-client/src/main/java/com/yahoo/vespa/feed/client/HttpFeedClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespa-feed-client/src/main/java/com/yahoo/vespa/feed/client/HttpFeedClient.java')
-rw-r--r--vespa-feed-client/src/main/java/com/yahoo/vespa/feed/client/HttpFeedClient.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/vespa-feed-client/src/main/java/com/yahoo/vespa/feed/client/HttpFeedClient.java b/vespa-feed-client/src/main/java/com/yahoo/vespa/feed/client/HttpFeedClient.java
new file mode 100644
index 00000000000..6cf56ac9cdd
--- /dev/null
+++ b/vespa-feed-client/src/main/java/com/yahoo/vespa/feed/client/HttpFeedClient.java
@@ -0,0 +1,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;
+ }
+}