aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/configserver/state/State.java
blob: a05aac6b23f19c7412bd7a53cdd50e7a2311bf0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.configserver.state;

/**
 * The /state/v1 REST API of the config server
 *
 * @author hakon
 */
public interface State {
    /** Issue GET on /state/v1/health */
    HealthCode getHealth();
}