summaryrefslogtreecommitdiffstats
path: root/athenz-identity-provider-service/src/main/java/com/yahoo/vespa/hosted/athenz/identityprovider/AthenzCredentials.java
blob: 36c1aee49e05375e250a9278fa12bc88559e27ac (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.athenz.identityprovider;

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

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

    private final String nToken;
    private final X509Certificate certificate;
    private final KeyPair keyPair;
    private final SignedIdentityDocument identityDocument;
    private final Instant createdAt;

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

    String getNToken() {
        return nToken;
    }

    X509Certificate getCertificate() {
        return certificate;
    }

    KeyPair getKeyPair() {
        return keyPair;
    }

    SignedIdentityDocument getIdentityDocument() {
        return identityDocument;
    }

    Instant getCreatedAt() {
        return createdAt;
    }

}