summaryrefslogtreecommitdiffstats
path: root/config-model-api/src/main/java/com/yahoo/config/model/api/EndpointCertificateSecrets.java
blob: 952a0562f1d2afd2d5d9cc96be71be9dcdf2969e (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
// Copyright Yahoo. 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 EndpointCertificateSecrets() {
        this(null, null);
    }

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

    public String certificate() {
        return certificate;
    }

    public String key() {
        return key;
    }

    public boolean isMissing() {
        return this == MISSING;
    }
}