aboutsummaryrefslogtreecommitdiffstats
path: root/config-model-api/src/main/java/com/yahoo/config/model/api/container/ContainerServiceType.java
blob: 2b1c7f7b1d0ae769be11314e85e0a8a438a2fa9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.model.api.container;

/**
 * @author gjoranv
 */
public enum ContainerServiceType {

    CONTAINER("container"),
    QRSERVER("qrserver"),
    CLUSTERCONTROLLER_CONTAINER("container-clustercontroller"),
    LOGSERVER_CONTAINER("logserver-container"),
    METRICS_PROXY_CONTAINER("metricsproxy-container");

    public final String serviceName;

    ContainerServiceType(String serviceName) {
        this.serviceName = serviceName;
    }

}