aboutsummaryrefslogtreecommitdiffstats
path: root/config-model-api/src/main/java/com/yahoo/config/model/api/ContainerEndpoint.java
blob: e26e7eec37914039cf6f025e309951e1f73441b7 (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
81
82
83
84
85
86
87
88
89
90
91
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.model.api;

import java.util.List;
import java.util.Objects;
import java.util.OptionalInt;

/**
 * ContainerEndpoint tracks the service names that a Container Cluster should be
 * known as. This is used during request routing both for regular requests and
 * for health checks in traffic distribution.
 *
 * @author ogronnesby
 */
public class ContainerEndpoint {

    private final String clusterId;
    private final ApplicationClusterEndpoint.Scope scope;
    private final List<String> names;
    private final OptionalInt weight;
    private final ApplicationClusterEndpoint.RoutingMethod routingMethod;
    private final ApplicationClusterEndpoint.AuthMethod authMethod;

    public ContainerEndpoint(String clusterId, ApplicationClusterEndpoint.Scope scope, List<String> names) {
        this(clusterId, scope, names, OptionalInt.empty());
    }

    public ContainerEndpoint(String clusterId, ApplicationClusterEndpoint.Scope scope, List<String> names, OptionalInt weight) {
        this(clusterId, scope, names, weight, ApplicationClusterEndpoint.RoutingMethod.sharedLayer4);
    }

    public ContainerEndpoint(String clusterId, ApplicationClusterEndpoint.Scope scope, List<String> names, OptionalInt weight, ApplicationClusterEndpoint.RoutingMethod routingMethod) {
        this(clusterId, scope, names, weight, routingMethod, ApplicationClusterEndpoint.AuthMethod.mtls);
    }

    public ContainerEndpoint(String clusterId, ApplicationClusterEndpoint.Scope scope, List<String> names, OptionalInt weight, ApplicationClusterEndpoint.RoutingMethod routingMethod, ApplicationClusterEndpoint.AuthMethod authMethod) {
        this.clusterId = Objects.requireNonNull(clusterId);
        this.scope = Objects.requireNonNull(scope);
        this.names = List.copyOf(Objects.requireNonNull(names));
        this.weight = Objects.requireNonNull(weight);
        this.routingMethod = Objects.requireNonNull(routingMethod);
        this.authMethod = Objects.requireNonNull(authMethod);
    }

    public String clusterId() {
        return clusterId;
    }

    public List<String> names() {
        return names;
    }

    public ApplicationClusterEndpoint.Scope scope() {
        return scope;
    }

    public OptionalInt weight() {
        return weight;
    }

    public ApplicationClusterEndpoint.RoutingMethod routingMethod() {
        return routingMethod;
    }

    public ApplicationClusterEndpoint.AuthMethod authMethod() {
        return authMethod;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        ContainerEndpoint that = (ContainerEndpoint) o;
        return Objects.equals(clusterId, that.clusterId) &&
               Objects.equals(scope, that.scope) &&
               Objects.equals(names, that.names) &&
               Objects.equals(weight, that.weight) &&
               Objects.equals(routingMethod, that.routingMethod) &&
               Objects.equals(authMethod, that.authMethod);
    }

    @Override
    public int hashCode() {
        return Objects.hash(clusterId, names, scope, weight, routingMethod, authMethod);
    }

    @Override
    public String toString() {
        return String.format("container endpoint %s -> %s [scope=%s, weight=%s, routingMethod=%s, authMethod=%s]", clusterId, names, scope, weight, routingMethod, authMethod);
    }
}