aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2018-09-24 11:10:42 +0200
committerMartin Polden <mpolden@mpolden.no>2018-09-24 11:10:42 +0200
commit8e76078e53f5f37a9e4c701b00881b015475e7fc (patch)
treedaf1af3e93579f43dd963b67f94139a1970122b3 /controller-api/src
parent30a6375d0700228fe83a5664ef11ecfc81f56ce1 (diff)
Remove unused GlobalRoutingService interface
Diffstat (limited to 'controller-api/src')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/routing/GlobalRoutingService.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/routing/GlobalRoutingService.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/routing/GlobalRoutingService.java
deleted file mode 100644
index 5a5f775c013..00000000000
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/routing/GlobalRoutingService.java
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.vespa.hosted.controller.api.integration.routing;
-
-import java.util.Map;
-
-/**
- * A global routing service.
- *
- * @author mpolden
- */
-// TODO: Remove once DeploymentMetricsMaintainer starts providing rotation status
-public interface GlobalRoutingService {
-
- /** Returns the health status for each endpoint behind the given rotation name */
- Map<String, RotationStatus> getHealthStatus(String rotationName);
-
-}