aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/client/AthenzCredentials.java
blob: 0da15569aba940c5aeb55c45a64620a32bdfa53f (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.athenz.identityprovider.client;

import com.yahoo.vespa.athenz.identityprovider.api.SignedIdentityDocument;

import java.security.KeyPair;
import java.security.cert.X509Certificate;

/**
 * @author bjorncs
 */
class AthenzCredentials {

    private final X509Certificate certificate;
    private final KeyPair keyPair;
    private final SignedIdentityDocument identityDocument;

    AthenzCredentials(X509Certificate certificate,
                      KeyPair keyPair,
                      SignedIdentityDocument identityDocument) {
        this.certificate = certificate;
        this.keyPair = keyPair;
        this.identityDocument = identityDocument;
    }

    X509Certificate getCertificate() {
        return certificate;
    }

    KeyPair getKeyPair() {
        return keyPair;
    }

    SignedIdentityDocument getIdentityDocument() {
        return identityDocument;
    }

}