aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2019-09-02 14:52:58 +0200
committerMartin Polden <mpolden@mpolden.no>2019-09-04 09:15:44 +0200
commit3f8ab20f86b3c8348e55c01400f940241698589a (patch)
tree6c2a3be50bbf79ea395c124af17504e1d9168495 /controller-api
parent167b02afe8a20dfa90ccf2634a7f4fb1d7270011 (diff)
Move RoutingGenerator to ServiceRegistry
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java3
1 files changed, 3 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 964c2ece524..57a29932b8a 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
@@ -4,6 +4,7 @@ package com.yahoo.vespa.hosted.controller.api.integration;
import com.yahoo.vespa.hosted.controller.api.integration.configserver.ConfigServer;
import com.yahoo.vespa.hosted.controller.api.integration.dns.NameService;
import com.yahoo.vespa.hosted.controller.api.integration.routing.GlobalRoutingService;
+import com.yahoo.vespa.hosted.controller.api.integration.routing.RoutingGenerator;
/**
* This provides access to all service dependencies of the controller. Implementations of this are responsible for
@@ -20,4 +21,6 @@ public interface ServiceRegistry {
GlobalRoutingService globalRoutingService();
+ RoutingGenerator routingGenerator();
+
}