aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/Application.java
blob: 2d04140b36552fa6193c07ad0bd6cc7410682285 (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
// Copyright Yahoo. 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.config.provision.ApplicationId;
import com.yahoo.config.provision.ClusterSpec;

import java.util.Collection;
import java.util.Map;
import java.util.stream.Collectors;

/**
 * The client-side version of the node repository's view of applications
 *
 * @author bratseth
 */
public class Application {

    private final ApplicationId id;
    private final Map<ClusterSpec.Id, Cluster> clusters;

    public Application(ApplicationId id, Collection<Cluster> clusters) {
        this.id = id;
        this.clusters = clusters.stream().collect(Collectors.toMap(c -> c.id(), c -> c));
    }

    public ApplicationId id() { return id; }

    public Map<ClusterSpec.Id, Cluster> clusters() { return clusters; }

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

}