summaryrefslogtreecommitdiffstats
path: root/athenz-identity-provider-service/src/main/java/com/yahoo/vespa/hosted/athenz/instanceproviderservice/identitydocument/ProviderUniqueId.java
blob: c956ead5f8ce702ccaf9ca7b5a3dcf0b84878aac (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.athenz.instanceproviderservice.identitydocument;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.yahoo.vespa.athenz.identityprovider.api.VespaUniqueInstanceId;

import java.util.Objects;

/**
 * @author bjorncs
 */
public class ProviderUniqueId {

    @JsonProperty("tenant")
    public final String tenant;
    @JsonProperty("application")
    public final String application;
    @JsonProperty("environment")
    public final String environment;
    @JsonProperty("region")
    public final String region;
    @JsonProperty("instance")
    public final String instance;
    @JsonProperty("cluster-id")
    public final String clusterId;
    @JsonProperty("cluster-index")
    public final int clusterIndex;

    public ProviderUniqueId(@JsonProperty("tenant") String tenant,
                            @JsonProperty("application") String application,
                            @JsonProperty("environment") String environment,
                            @JsonProperty("region") String region,
                            @JsonProperty("instance") String instance,
                            @JsonProperty("cluster-id") String clusterId,
                            @JsonProperty("cluster-index") int clusterIndex) {
        this.tenant = tenant;
        this.application = application;
        this.environment = environment;
        this.region = region;
        this.instance = instance;
        this.clusterId = clusterId;
        this.clusterIndex = clusterIndex;
    }

    public VespaUniqueInstanceId toVespaUniqueInstanceId() {
        return new VespaUniqueInstanceId(clusterIndex, clusterId, instance, application, tenant, region, environment);
    }

    @Override
    public String toString() {
        return "ProviderUniqueId{" +
               "tenant='" + tenant + '\'' +
               ", application='" + application + '\'' +
               ", environment='" + environment + '\'' +
               ", region='" + region + '\'' +
               ", instance='" + instance + '\'' +
               ", clusterId='" + clusterId + '\'' +
               ", clusterIndex=" + clusterIndex +
               '}';
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        ProviderUniqueId that = (ProviderUniqueId) o;
        return clusterIndex == that.clusterIndex &&
               Objects.equals(tenant, that.tenant) &&
               Objects.equals(application, that.application) &&
               Objects.equals(environment, that.environment) &&
               Objects.equals(region, that.region) &&
               Objects.equals(instance, that.instance) &&
               Objects.equals(clusterId, that.clusterId);
    }

    @Override
    public int hashCode() {
        return Objects.hash(tenant, application, environment, region, instance, clusterId, clusterIndex);
    }
}