aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/application/v4/model/TenantWithApplications.java
blob: a4f87e5e0e125fc2cd6e9c0193ae9ecc1c18cdee (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 Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.application.v4.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.yahoo.vespa.athenz.api.AthenzDomain;
import com.yahoo.vespa.hosted.controller.api.identifiers.Property;

import java.util.List;

/**
 * @author Tony Vaagenes
 */
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(value = JsonInclude.Include.NON_NULL)
public class TenantWithApplications {
    // TODO: use TenantMetaData instead of individual fields (requires dashboard updates)
    public TenantType type;
    public AthenzDomain athensDomain;
    public Property property;
    public List<ApplicationReference> applications;

    public TenantWithApplications() {}

    public TenantWithApplications(
            TenantType type,
            AthenzDomain athensDomain,
            Property property,
            List<ApplicationReference> applications) {
        this.type = type;
        this.athensDomain = athensDomain;
        this.property = property;
        this.applications = applications;
    }
}