aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/configserver/state/HealthCode.java
blob: 057a173ccc6d7c7033d8a2dc1c9bdea8a3f44cdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// 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 healthiness of a remote Vespa server based on REST API
 *
 * @author hakon
 */
public enum HealthCode {
    DOWN("down"),
    INITIALIZING("initializing"),
    UP("up");

    private final String code;

    HealthCode(String code) {
        this.code = code;
    }

    public static HealthCode fromString(String code) {
        return HealthCode.valueOf(code.toUpperCase());
    }

    public String asString() {
        return code;
    }

    @Override
    public String toString() {
        return asString();
    }
}