aboutsummaryrefslogtreecommitdiffstats
path: root/config-model-api/src/main/java/com/yahoo/config/model/api/TlsSecrets.java
blob: 6a8b5a237abf47eb6600131d006277a1b63b4c11 (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 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.model.api;

public class TlsSecrets {
    public static final TlsSecrets MISSING = new TlsSecrets();

    private final String certificate;
    private final String key;

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

    public TlsSecrets(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;
    }
}