summaryrefslogtreecommitdiffstats
path: root/config-model-api
diff options
context:
space:
mode:
Diffstat (limited to 'config-model-api')
-rw-r--r--config-model-api/src/main/java/com/yahoo/config/model/api/Model.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/config-model-api/src/main/java/com/yahoo/config/model/api/Model.java b/config-model-api/src/main/java/com/yahoo/config/model/api/Model.java
index a7fd48bfea8..54d22d58832 100644
--- a/config-model-api/src/main/java/com/yahoo/config/model/api/Model.java
+++ b/config-model-api/src/main/java/com/yahoo/config/model/api/Model.java
@@ -70,6 +70,9 @@ public interface Model {
/** Returns the version of this model. */
default Version version() { return Version.emptyVersion; }
+ /** Returns the wanted node version of this model. */
+ default Version wantedNodeVersion() { return Version.emptyVersion; }
+
/** Returns the provisioned hosts of this. */
default Provisioned provisioned() { return new Provisioned(); }