aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/model/ContentService.java
diff options
context:
space:
mode:
Diffstat (limited to 'orchestrator/src/main/java/com/yahoo/vespa/orchestrator/model/ContentService.java')
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/model/ContentService.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/model/ContentService.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/model/ContentService.java
new file mode 100644
index 00000000000..aca3c6af7d2
--- /dev/null
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/model/ContentService.java
@@ -0,0 +1,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; }
+}