summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2019-11-01 11:25:47 +0100
committerGitHub <noreply@github.com>2019-11-01 11:25:47 +0100
commitf2153d6bca9523a399033e9775ab6960c6f06cc6 (patch)
tree0cb50918e8681eff9e755c993a680e5550b932d2 /controller-api
parentbd372b2cb06a89c5427523be0080324883a0602b (diff)
parent84eed8ecc98150c2e2bdb654fcfb819eb0c2b05c (diff)
Merge pull request #11187 from vespa-engine/jvenstad/convert-more-deployment-tests
Jvenstad/convert more deployment tests
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java
index dec5d9264a7..26f78a3be90 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java
@@ -21,6 +21,8 @@ import com.yahoo.vespa.hosted.controller.api.integration.resource.TenantCost;
import com.yahoo.vespa.hosted.controller.api.integration.routing.GlobalRoutingService;
import com.yahoo.vespa.hosted.controller.api.integration.routing.RoutingGenerator;
+import java.time.Clock;
+
/**
* This provides access to all service dependencies of the controller. Implementations of this are responsible for
* constructing and configuring service implementations suitable for use by the controller.
@@ -32,6 +34,8 @@ public interface ServiceRegistry {
ConfigServer configServer();
+ Clock clock();
+
NameService nameService();
GlobalRoutingService globalRoutingService();