aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/Rotation.java
blob: d1cf86c6d1658228bfe4c78211950a513f7cf6ae (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
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision;

import java.util.Objects;

/**
 * A rotation (virtual endpoint).
 */
// TODO(mpolden): Remove once 7.122 is the oldest config model
public class Rotation {

    private final String id;

    public Rotation(String id) {
        this.id = Objects.requireNonNull(id, "Rotation id cannot be null");
    }

    public String getId() {
        return id;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof Rotation)) {
            return false;
        }
        final Rotation that = (Rotation) o;
        return (this.id.equals(that.id));
    }

    @Override
    public int hashCode() {
        return id.hashCode();
    }

    @Override
    public String toString() {
        return "rotation '" + id + "'";
    }

}