summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
+ }
+
+}