summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/statuspage/StatusPageServerInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/statuspage/StatusPageServerInterface.java')
-rw-r--r--clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/statuspage/StatusPageServerInterface.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/statuspage/StatusPageServerInterface.java b/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/statuspage/StatusPageServerInterface.java
index e8072be7366..c9cc13e1803 100644
--- a/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/statuspage/StatusPageServerInterface.java
+++ b/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/statuspage/StatusPageServerInterface.java
@@ -2,9 +2,11 @@
package com.yahoo.vespa.clustercontroller.core.status.statuspage;
public interface StatusPageServerInterface {
- public int getPort();
- public void shutdown() throws InterruptedException, java.io.IOException;
- public void setPort(int port) throws java.io.IOException, InterruptedException;
- public StatusPageServer.HttpRequest getCurrentHttpRequest();
- public void answerCurrentStatusRequest(StatusPageResponse r);
+
+ int getPort();
+ void shutdown() throws InterruptedException, java.io.IOException;
+ void setPort(int port) throws java.io.IOException, InterruptedException;
+ StatusPageServer.HttpRequest getCurrentHttpRequest();
+ void answerCurrentStatusRequest(StatusPageResponse r);
+
}