summaryrefslogtreecommitdiffstats
path: root/tenant-cd
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2019-06-13 09:34:02 +0200
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2019-06-13 09:34:02 +0200
commit32d2fe74c81e35625f9e7aa106359856b3950329 (patch)
tree7236a4be207316e070f95c93ecf195d2108571dd /tenant-cd
parent5a742d376f0668ad18d0bf443299d9a4a646d10d (diff)
Add missing (skeleton) class
Diffstat (limited to 'tenant-cd')
-rw-r--r--tenant-cd/src/main/java/ai/vespa/hosted/cd/http/HttpDeployment.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/tenant-cd/src/main/java/ai/vespa/hosted/cd/http/HttpDeployment.java b/tenant-cd/src/main/java/ai/vespa/hosted/cd/http/HttpDeployment.java
new file mode 100644
index 00000000000..8eebe04ebef
--- /dev/null
+++ b/tenant-cd/src/main/java/ai/vespa/hosted/cd/http/HttpDeployment.java
@@ -0,0 +1,30 @@
+package ai.vespa.hosted.cd.http;
+
+import ai.vespa.hosted.cd.Deployment;
+import ai.vespa.hosted.cd.Endpoint;
+import ai.vespa.hosted.cd.TestDeployment;
+import ai.vespa.hosted.cd.TestEndpoint;
+
+/**
+ * A remote deployment of a Vespa application, reachable over HTTP. Contains {@link HttpEndpoint}s.
+ *
+ * @author jonmv
+ */
+public class HttpDeployment implements Deployment {
+
+ @Override
+ public Endpoint endpoint() {
+ return null;
+ }
+
+ @Override
+ public Endpoint endpoint(String id) {
+ return null;
+ }
+
+ @Override
+ public TestDeployment asTestDeployment() {
+ return null;
+ }
+
+}