summaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/Rotation.java
blob: e565ca41967008883e847e74b97038c5b64fe4a3 (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
// Copyright 2016 Yahoo Inc. 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 Brooklyn rotation, e.g. rotation-042.vespa.a02.yahoodns.net.
 */
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();
    }

}