aboutsummaryrefslogtreecommitdiffstats
path: root/config-model-api/src/main/java/com/yahoo/config/model/api/EndpointCertificateSecrets.java
blob: b9348f38c3ef364c3fc2ad706b8b64a0e90cbb6d (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.model.api;

public class EndpointCertificateSecrets {
    public static final EndpointCertificateSecrets MISSING = new EndpointCertificateSecrets();
    private final String certificate;
    private final String key;
    private final int version;

    private EndpointCertificateSecrets() {
        this(null, null);
    }

    public EndpointCertificateSecrets(String certificate, String key) {
        this.certificate = certificate;
        this.key = key;
        this.version = -1;
    }

    public EndpointCertificateSecrets(String certificate, String key, int version) {
        this.certificate = certificate;
        this.key = key;
        this.version = version;
    }

    public String certificate() {
        return certificate;
    }

    public String key() {
        return key;
    }

    public int version() {
        return version;
    }

    public static EndpointCertificateSecrets missing(int version) {
        return new EndpointCertificateSecrets(null, null, version);
    }

    public boolean isMissing() {
        return this == MISSING || certificate == null || key == null;
    }
}