aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/client/zts/Identity.java
blob: a5780e8fc0a8968477aec569601ea80f409ef2d2 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.athenz.client.zts;

import java.security.cert.X509Certificate;
import java.util.List;

/**
 * The identity of a service
 *
 * @author bjorncs
 */
public class Identity {

    private final X509Certificate certificate;
    private final List<X509Certificate> caCertificates;

    public Identity(X509Certificate certificate, List<X509Certificate> caCertificates) {
        this.certificate = certificate;
        this.caCertificates = caCertificates;
    }

    public X509Certificate certificate() {
        return certificate;
    }

    public List<X509Certificate> caCertificates() {
        return caCertificates;
    }
}