summaryrefslogtreecommitdiffstats
path: root/orchestrator
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-10-22 11:08:24 +0200
committerJon Bratseth <bratseth@oath.com>2018-10-22 11:08:24 +0200
commit23afd5993ba3e22334c42e1a4af7d146cf5da801 (patch)
tree415d1f728078655d9551e6e300eb4fb52d2c3f58 /orchestrator
parent17fa29f433b5338723c4bef1eae972b0de9d7dd5 (diff)
Add GET suspended status to application/v2
Diffstat (limited to 'orchestrator')
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/Orchestrator.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/Orchestrator.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/Orchestrator.java
index ab61a51c418..b2be4fe52ec 100644
--- a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/Orchestrator.java
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/Orchestrator.java
@@ -33,6 +33,7 @@ public interface Orchestrator {
/**
* Get orchestrator information related to a host.
+ *
* @throws HostNameNotFoundException
*/
Host getHost(HostName hostName) throws HostNameNotFoundException;
@@ -119,4 +120,5 @@ public interface Orchestrator {
* @param appId Identifier of the application to resume
*/
void suspend(ApplicationId appId) throws ApplicationStateChangeDeniedException, ApplicationIdNotFoundException;
+
}