aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/model/ContentService.java
blob: aca3c6af7d27b96a678871a94aefd5a87315b148 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.yahoo.vespa.orchestrator.model;

public enum ContentService {
    DISTRIBUTOR("distributor"), STORAGE_NODE("storage");

    private final String nameInClusterController;

    ContentService(String nameInClusterController) {
        this.nameInClusterController = nameInClusterController;
    }

    public String nameInClusterController() { return nameInClusterController; }
}