aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServerVersion.java
blob: 6b63714573401770f90e14d7d09c0154521c2f96 (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 Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.configserver;

import com.yahoo.component.Version;

/**
 * Represents the config server's current and wanted version.
 *
 * @author mpolden
 */
public class ConfigServerVersion {

    private final Version current;
    private final Version wanted;

    public ConfigServerVersion(Version current, Version wanted) {
        this.current = current;
        this.wanted = wanted;
    }

    public Version current() {
        return current;
    }

    public Version wanted() {
        return wanted;
    }

    public boolean upgrading() {
        return !current.equals(wanted);
    }
}